Commit b30575bc authored by Jun Zhao's avatar Jun Zhao Committed by Jun Zhao

checkasm/sw_rgb: fix the function declaration warning

fix the warning: "function declaration isn’t a prototype", in C
int foo() and int foo(void) are different functions. int foo()
accepts an arbitrary number of arguments, while int foo(void) accepts 0
arguments.
Signed-off-by: 's avatarJun Zhao <mypopydev@gmail.com>
parent 1655e109
......@@ -68,7 +68,7 @@ static void check_shuffle_bytes(void * func, const char * report)
}
}
static void check_uyvy_to_422p()
static void check_uyvy_to_422p(void)
{
int i;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment