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 | 48300827a18b9145bc5d57afee0520c3b226d50f (patch) | |
tree | dedd68a49beeb2986d840d9b4233ea2cc92e95b5 /gst/mpeg2sub | |
parent | b80a4140f3c88fb68f4c319be9efc6977636360d (diff) | |
download | gst-plugins-bad-48300827a18b9145bc5d57afee0520c3b226d50f.tar.gz gst-plugins-bad-48300827a18b9145bc5d57afee0520c3b226d50f.tar.bz2 gst-plugins-bad-48300827a18b9145bc5d57afee0520c3b226d50f.zip |
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/mpeg2sub')
-rw-r--r-- | gst/mpeg2sub/gstmpeg2subt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/mpeg2sub/gstmpeg2subt.c b/gst/mpeg2sub/gstmpeg2subt.c index c2675224..a857a104 100644 --- a/gst/mpeg2sub/gstmpeg2subt.c +++ b/gst/mpeg2sub/gstmpeg2subt.c @@ -362,7 +362,7 @@ gst_mpeg2subt_chain_subtitle (GstPad *pad, GstBuffer *buf) mpeg2subt->have_title = FALSE; } - GST_DEBUG (0,"presentation time %llu", GST_BUFFER_TIMESTAMP(buf)); + GST_DEBUG (0,"presentation time %" G_GUINT64_FORMAT, GST_BUFFER_TIMESTAMP(buf)); /* deal with partial frame from previous buffer */ if (mpeg2subt->partialbuf) { |