changeset 9625:dc14d13daa5e icedtea-3.0.0pre01

PR1774: Correct #ifdef to #if Contributed-by: Bernhard Rosenkr?nzer <bero@arklinux.org>
author andrew
date Fri, 16 May 2014 16:05:05 +0100
parents c0b46920511a
children 4de3de6bc086
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	Fri May 16 16:03:23 2014 +0100
+++ b/src/share/native/sun/awt/splashscreen/splashscreen_gif.c	Fri May 16 16:05:05 2014 +0100
@@ -318,7 +318,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);