diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2006-10-05 14:26:08 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2012-09-11 01:54:39 +0100 |
commit | 328677c684abf2fe795b132838b07bf6e6354d18 (patch) | |
tree | 3887ddb0bf3bfe2cd4d9fe3ef56a8e3844c83dbb /gst | |
parent | a03185f5f22e69ee4fd48ddd725523547d8e117e (diff) |
gdp: Printf fixes.
Original commit message from CVS:
* gst/gstpad.c: (pre_activate):
* gst/gstregistry.c: (gst_registry_scan_path_level):
* gst/gstregistryxml.c: (load_plugin):
* libs/gst/controller/gstcontroller.c:
(gst_controlled_property_set_interpolation_mode):
* libs/gst/dataprotocol/dataprotocol.c:
(gst_dp_packet_from_event_1_0):
* libs/gst/net/gstnetclientclock.c:
(gst_net_client_clock_observe_times):
* plugins/elements/gstfdsrc.c: (gst_fd_src_create):
Printf fixes.
Diffstat (limited to 'gst')
-rw-r--r-- | gst/gdp/dataprotocol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/gdp/dataprotocol.c b/gst/gdp/dataprotocol.c index 7b9ec2b35..949fd729f 100644 --- a/gst/gdp/dataprotocol.c +++ b/gst/gdp/dataprotocol.c @@ -545,7 +545,7 @@ gst_dp_packet_from_event_1_0 (const GstEvent * event, GstDPHeaderFlag flags, GST_LOG ("event %p has structure, string %s", event, string); pl_length = strlen ((gchar *) string) + 1; /* include trailing 0 */ } else { - GST_LOG ("event %p has no structure"); + GST_LOG ("event %p has no structure", event); pl_length = 0; } |