diff options
author | David Schleef <ds@schleef.org> | 2003-02-02 05:26:29 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2003-02-02 05:26:29 +0000 |
commit | df0b94aae40c654ce58a6d164c920ae4f1b3f224 (patch) | |
tree | d365fc5562870f3c1bec2472a3ab2cc53dd91fab /gst/udp/gstudpsink.c | |
parent | 85f9831b2fb8f4fa1bcf122f50e0f8cd8b5ee52f (diff) |
Change %lld, %llu to G_G[U]INT64_FORMAT globally. Fix bad pointer->integer conversion.
Original commit message from CVS:
Change %lld, %llu to G_G[U]INT64_FORMAT globally. Fix bad pointer->integer
conversion.
Diffstat (limited to 'gst/udp/gstudpsink.c')
-rw-r--r-- | gst/udp/gstudpsink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/udp/gstudpsink.c b/gst/udp/gstudpsink.c index c1afce42..41dc5c6d 100644 --- a/gst/udp/gstudpsink.c +++ b/gst/udp/gstudpsink.c @@ -269,7 +269,7 @@ gst_udpsink_chain (GstPad *pad, GstBuffer *buf) if (udpsink->clock) { GstClockID id = gst_clock_new_single_shot_id (udpsink->clock, GST_BUFFER_TIMESTAMP (buf)); - GST_DEBUG (0, "udpsink: clock wait: %llu\n", GST_BUFFER_TIMESTAMP (buf)); + GST_DEBUG (0, "udpsink: clock wait: %" G_GUINT64_FORMAT "\n", GST_BUFFER_TIMESTAMP (buf)); gst_element_clock_wait (GST_ELEMENT (udpsink), id, NULL); gst_clock_id_free (id); } |