mirror of
https://github.com/webmproject/libwebp.git
synced 2025-07-12 22:14:29 +02:00
gifdec: fix ErrorGIFNotAvailable() declaration
A void parameter list should be (void), not (). Fixes a -Wstrict-prototypes warning. Change-Id: I180efbf7c58956695359320072cce1171d79e377
This commit is contained in:
@ -317,7 +317,7 @@ void GIFDisplayError(const GifFileType* const gif, int gif_error) {
|
||||
|
||||
#else // !WEBP_HAVE_GIF
|
||||
|
||||
static void ErrorGIFNotAvailable() {
|
||||
static void ErrorGIFNotAvailable(void) {
|
||||
fprintf(stderr, "GIF support not compiled. Please install the libgif-dev "
|
||||
"package before building.\n");
|
||||
}
|
||||
|
Reference in New Issue
Block a user