gst-inspect: Fix yet another compiler warning
authorSebastian Dröge <sebastian@centricular.com>
Mon, 10 Feb 2014 16:09:59 +0000 (17:09 +0100)
committerSebastian Dröge <sebastian@centricular.com>
Mon, 10 Feb 2014 16:09:59 +0000 (17:09 +0100)
https://bugzilla.gnome.org/show_bug.cgi?id=724045

tools/gst-inspect.c

index eeef7b4..82e51c7 100644 (file)
@@ -510,8 +510,8 @@ print_element_properties_info (GstElement * element)
               gst_value_get_fraction_numerator (&value),
               gst_value_get_fraction_denominator (&value));
         } else {
-          n_print ("%-23.23s Unknown type %ld \"%s\"", "", param->value_type,
-              g_type_name (param->value_type));
+          n_print ("%-23.23s Unknown type %ld \"%s\"", "",
+              (glong) param->value_type, g_type_name (param->value_type));
         }
         break;
     }