diff options
author | Wim Taymans <wim.taymans@collabora.co.uk> | 2012-06-05 09:39:41 +0200 |
---|---|---|
committer | Wim Taymans <wim.taymans@collabora.co.uk> | 2012-06-05 09:39:41 +0200 |
commit | 64b5eeefa33aadd496b510ecd31e4ec63d03002e (patch) | |
tree | 3474bf26177354342c9968bdb83fdd58dc911698 /gst/gstutils.c | |
parent | c4ae921ba6b45ddbba227f1006a672efc18cfc66 (diff) |
utils: improve debug
Diffstat (limited to 'gst/gstutils.c')
-rw-r--r-- | gst/gstutils.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gst/gstutils.c b/gst/gstutils.c index 90f69f97d..5c1534185 100644 --- a/gst/gstutils.c +++ b/gst/gstutils.c @@ -2931,7 +2931,8 @@ gst_pad_query_accept_caps (GstPad * pad, GstCaps * caps) g_return_val_if_fail (GST_IS_PAD (pad), FALSE); g_return_val_if_fail (GST_IS_CAPS (caps), FALSE); - GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "accept caps of %p", caps); + GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "accept caps of %" + GST_PTR_FORMAT, caps); query = gst_query_new_accept_caps (caps); if (gst_pad_query (pad, query)) { |