From fa3f21a7dfcbe9cc4bbef830dad8f5bff073e90e Mon Sep 17 00:00:00 2001 From: Pavel Tcherniaev Date: Fri, 2 Feb 2024 13:46:07 -0800 Subject: [PATCH] fixed syntax error in videodecodefork.cpp, was missing a semicolon at the end of a line (#217) Co-authored-by: kjayapra-amd --- samples/videoDecodeFork/videodecodefork.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/videoDecodeFork/videodecodefork.cpp b/samples/videoDecodeFork/videodecodefork.cpp index 8b4f5e2ebe..ef87282ef7 100644 --- a/samples/videoDecodeFork/videodecodefork.cpp +++ b/samples/videoDecodeFork/videodecodefork.cpp @@ -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); }