summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2006-09-15 08:50:21 +0000
committerWim Taymans <wim.taymans@gmail.com>2006-09-15 08:50:21 +0000
commit0e6d20b423d64b4136be5256e98906972d00eab8 (patch)
treebb7a30832501a0f86f5583cf9d44aa5314eab889 /tools
parent6efdf610a33a66adb5b542c2cb7a6d6ea5be7016 (diff)
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.
Diffstat (limited to 'tools')
-rw-r--r--tools/gst-inspect.c2
1 files changed, 1 insertions, 1 deletions
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++;
}