MFB: Fixed bug #49193 (gdJpegGetVersionString() inside gd_compact identifies wrong type in declaration)

This commit is contained in:
Ilia Alshanetsky 2009-08-09 13:16:21 +00:00
parent d80dac8aae
commit d24d6a449e
2 changed files with 2 additions and 2 deletions

View file

@ -14,7 +14,7 @@ int gdJpegGetVersionInt()
return JPEG_LIB_VERSION;
}
int gdJpegGetVersionString()
const char * gdJpegGetVersionString()
{
switch(JPEG_LIB_VERSION) {
case 62:

View file

@ -10,7 +10,7 @@
const char * gdPngGetVersionString();
int gdJpegGetVersionString();
const char * gdJpegGetVersionString();
int gdJpegGetVersionInt();
int overflow2(int a, int b);