From be32ae0252ae4a9301cc4b360b712a9208d3dfcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Mon, 10 Feb 2014 17:09:59 +0100 Subject: [PATCH] gst-inspect: Fix yet another compiler warning https://bugzilla.gnome.org/show_bug.cgi?id=724045 --- tools/gst-inspect.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/gst-inspect.c b/tools/gst-inspect.c index eeef7b4428..82e51c734c 100644 --- a/tools/gst-inspect.c +++ b/tools/gst-inspect.c @@ -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; }