changeset 4847:0ad964f2ced1

PR1303: Correct #ifdef to #if
author andrew
date Fri, 08 Mar 2013 15:53:50 +0000
parents 44d9f9e05ca4
children 90e4cb6f78bb
files src/share/native/sun/awt/splashscreen/splashscreen_gif.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/share/native/sun/awt/splashscreen/splashscreen_gif.c	Thu Mar 07 16:06:01 2013 +0000
+++ b/src/share/native/sun/awt/splashscreen/splashscreen_gif.c	Fri Mar 08 15:53:50 2013 +0000
@@ -316,7 +316,7 @@
 int
 SplashDecodeGifStream(Splash * splash, SplashStream * stream)
 {
-#ifdef GIFLIB_MAJOR >= 5
+#if GIFLIB_MAJOR >= 5
     int error = 0;
     GifFileType *gif = DGifOpen((void *) stream, SplashStreamGifInputFunc, &error);