tools/gst-inspect: Remove dead assignment
authorEdward Hervey <bilboed@bilboed.com>
Mon, 19 Oct 2009 11:29:40 +0000 (13:29 +0200)
committerEdward Hervey <bilboed@bilboed.com>
Mon, 19 Oct 2009 11:29:40 +0000 (13:29 +0200)
tools/gst-inspect.c

index 8fce30e..489ca13 100644 (file)
@@ -42,13 +42,12 @@ static void
 n_print (const char *format, ...)
 {
   va_list args;
-  gint retval;
 
   if (_name)
     g_print ("%s", _name);
 
   va_start (args, format);
-  retval = g_vprintf (format, args);
+  g_vprintf (format, args);
   va_end (args);
 }