From 60416c88e21ee894a0288166bd546236ed75279b Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Wed, 9 Mar 2005 18:20:04 +0000 Subject: Fix a C99ism. (#169741, Morten Welinder) 2005-03-09 Matthias Clasen * io-gif-animation.c (gdk_pixbuf_gif_anim_frame_composite): Fix a C99ism. (#169741, Morten Welinder) --- gdk-pixbuf/io-gif-animation.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'gdk-pixbuf/io-gif-animation.c') diff --git a/gdk-pixbuf/io-gif-animation.c b/gdk-pixbuf/io-gif-animation.c index fe40df834a..c99a0805e5 100644 --- a/gdk-pixbuf/io-gif-animation.c +++ b/gdk-pixbuf/io-gif-animation.c @@ -391,12 +391,13 @@ gdk_pixbuf_gif_anim_frame_composite (GdkPixbufGifAnim *gif_anim, while (tmp != NULL) { GdkPixbufFrame *f = tmp->data; + gint clipped_width, clipped_height; if (f->pixbuf == NULL) return; - gint clipped_width = MIN (gif_anim->width - f->x_offset, gdk_pixbuf_get_width (f->pixbuf)); - gint clipped_height = MIN (gif_anim->height - f->y_offset, gdk_pixbuf_get_height (f->pixbuf)); + clipped_width = MIN (gif_anim->width - f->x_offset, gdk_pixbuf_get_width (f->pixbuf)); + clipped_height = MIN (gif_anim->height - f->y_offset, gdk_pixbuf_get_height (f->pixbuf)); if (f->need_recomposite) { if (f->composited) { -- cgit v1.2.1