From cc7cebbead636a5ca40797d1f4e795389b87dc90 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Wed, 27 Nov 2002 22:37:57 +0000 Subject: [PATCH] Fix stupid compiler warning Original commit message from CVS: Fix stupid compiler warning --- gst/gstcache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/gstcache.c b/gst/gstcache.c index ffa8309b61..aa6ff21faa 100644 --- a/gst/gstcache.c +++ b/gst/gstcache.c @@ -369,7 +369,7 @@ gst_cache_add_association (GstCache *tc, gint id, GstAssocFlags flags, nassocs++; cur_format = va_arg (args, GstFormat); if (cur_format) - va_arg (args, gint64); + value = va_arg (args, gint64); } va_end (args);