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/chart | |
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/chart')
-rw-r--r-- | gst/chart/gstchart.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/chart/gstchart.c b/gst/chart/gstchart.c index da8954ec..0e6d9ed1 100644 --- a/gst/chart/gstchart.c +++ b/gst/chart/gstchart.c @@ -321,7 +321,7 @@ gst_chart_chain (GstPad *pad, GstBuffer *bufin) GST_DEBUG (0, "input buffer has %d samples", samples_in); if (chart->next_time <= GST_BUFFER_TIMESTAMP (bufin)) { chart->next_time = GST_BUFFER_TIMESTAMP (bufin); - GST_DEBUG (0, "in: %lld", GST_BUFFER_TIMESTAMP (bufin)); + GST_DEBUG (0, "in: %" G_GINT64_FORMAT, GST_BUFFER_TIMESTAMP (bufin)); } chart->samples_since_last_frame += samples_in; |