fixed syntax error in videodecodefork.cpp, was missing a semicolon at the end of a line (#217)

Co-authored-by: kjayapra-amd <karthik.jayaprakash@amd.com>

[ROCm/rocdecode commit: fa3f21a7df]
This commit is contained in:
Pavel Tcherniaev
2024-02-02 13:46:07 -08:00
committed by GitHub
parent 39cc3e2a44
commit 0ecf54230a
@@ -58,7 +58,7 @@ void ShowHelpAndExit(const char *option = NULL) {
<< "-i Input File Path - required" << std::endl
<< "-f Number of forks (>= 1) - optional; default: 4" << std::endl
<< "-d Device ID (>= 0) - optional; default: 0" << std::endl
<< "-z force_zero_latency (force_zero_latency, Decoded frames will be flushed out for display immediately); optional;" << std::endl
<< "-z force_zero_latency (force_zero_latency, Decoded frames will be flushed out for display immediately); optional;" << std::endl;
exit(0);
}