mirror of
https://github.com/webmproject/libwebp.git
synced 2024-11-19 20:08:28 +01:00
unicode_gif.h: fix -Wdeclaration-after-statement
when building for windows with _UNICODE defined unicode_gif.h|49 col 3| warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement] Change-Id: Ib9f0cc0eba036d6cd4221a4f70a078770dde01d0
This commit is contained in:
parent
404c1622f8
commit
bef0d79764
@ -45,18 +45,19 @@ static GifFileType* DGifOpenFileUnicode(const W_CHAR* file_name, int* error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#if defined(_WIN32) && defined(_UNICODE)
|
#if defined(_WIN32) && defined(_UNICODE)
|
||||||
|
{
|
||||||
int file_handle = _wopen(file_name, _O_RDONLY | _O_BINARY);
|
int file_handle = _wopen(file_name, _O_RDONLY | _O_BINARY);
|
||||||
if (file_handle == -1) {
|
if (file_handle == -1) {
|
||||||
if (error != NULL) *error = D_GIF_ERR_OPEN_FAILED;
|
if (error != NULL) *error = D_GIF_ERR_OPEN_FAILED;
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if LOCAL_GIF_PREREQ(5, 0)
|
#if LOCAL_GIF_PREREQ(5, 0)
|
||||||
return DGifOpenFileHandle(file_handle, error);
|
return DGifOpenFileHandle(file_handle, error);
|
||||||
#else
|
#else
|
||||||
return DGifOpenFileHandle(file_handle);
|
return DGifOpenFileHandle(file_handle);
|
||||||
#endif
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user