diff options
author | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2003-12-07 22:45:23 +0000 |
---|---|---|
committer | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2003-12-07 22:45:23 +0000 |
commit | 1f0ada9d7048385e6a4706bd0c5ca1ce55a4bafc (patch) | |
tree | 0165424159bc9bd9436255380da6c90c6e9e9599 /ext | |
parent | ac08905fb940347d8027a1963a915d034861bf07 (diff) |
gcc-2.95 nitpicking - thanks Scott Wheeler
Original commit message from CVS:
gcc-2.95 nitpicking - thanks Scott Wheeler
Diffstat (limited to 'ext')
-rw-r--r-- | ext/gdk_pixbuf/gstgdkanimation.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/gdk_pixbuf/gstgdkanimation.c b/ext/gdk_pixbuf/gstgdkanimation.c index e1fc9fac..934653c6 100644 --- a/ext/gdk_pixbuf/gstgdkanimation.c +++ b/ext/gdk_pixbuf/gstgdkanimation.c @@ -538,11 +538,12 @@ gst_gdk_animation_get_static_image (GdkPixbufAnimation *animation) { GstGdkAnimation *ani = GST_GDK_ANIMATION (animation); GTimeVal tv; + GstGdkAnimationIter *iter; if (!ani->pixbuf) { GST_LOG_OBJECT (ani, "trying to create pixbuf"); g_get_current_time (&tv); - GstGdkAnimationIter *iter = GST_GDK_ANIMATION_ITER ( + iter = GST_GDK_ANIMATION_ITER ( gdk_pixbuf_animation_get_iter (animation, &tv)); if (iter) { guint64 offset; |