mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 19:30:05 +00:00
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: Jun Zhao <mypopydev@gmail.com>
This commit is contained in:
parent
1655e1096e
commit
b30575bc98
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user