From 0e6d20b423d64b4136be5256e98906972d00eab8 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Fri, 15 Sep 2006 08:50:21 +0000 Subject: [PATCH] tools/gst-inspect.c: List flags as hex so it's easier to deal with. Original commit message from CVS: * tools/gst-inspect.c: (print_element_properties_info), (print_signal_info): List flags as hex so it's easier to deal with. --- ChangeLog | 6 ++++++ tools/gst-inspect.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 3b9d389a40..42f3862cbf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-09-15 Wim Taymans + + * tools/gst-inspect.c: (print_element_properties_info), + (print_signal_info): + List flags as hex so it's easier to deal with. + 2006-09-15 Wim Taymans * docs/libs/gstreamer-libs-sections.txt: diff --git a/tools/gst-inspect.c b/tools/gst-inspect.c index 1fedc8f783..5f1ebcb3b5 100644 --- a/tools/gst-inspect.c +++ b/tools/gst-inspect.c @@ -488,7 +488,7 @@ print_element_properties_info (GstElement * element) j = 0; while (values[j].value_name) { - g_print ("\n%s%-23.23s (%d): \t%s", "", + g_print ("\n%s%-23.23s (0x%08x): \t%s", "", _name, values[j].value, values[j].value_nick); j++; }