rndbuffersize: printf format fix for long -> int change
authorTim-Philipp Müller <tim.muller@collabora.co.uk>
Mon, 11 Jun 2012 10:20:18 +0000 (11:20 +0100)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Mon, 11 Jun 2012 10:20:18 +0000 (11:20 +0100)
gst/debugutils/rndbuffersize.c

index e69223b..e5c78c8 100644 (file)
@@ -413,7 +413,7 @@ bogus_minmax:
   {
     GST_ELEMENT_ERROR (self, LIBRARY, SETTINGS,
         ("The minimum buffer size is smaller than the maximum buffer size."),
-        ("buffer sizes: max=%ld, min=%ld", self->min, self->max));
+        ("buffer sizes: max=%d, min=%d", self->min, self->max));
     goto pause_task;
   }
 }