summaryrefslogtreecommitdiff
path: root/gst-libs
diff options
context:
space:
mode:
authorJun Xie <jun.xie@samsung.com>2017-12-18 20:39:07 +0800
committerEdward Hervey <bilboed@bilboed.com>2017-12-18 14:09:36 +0100
commitf995bcf85a5bb3eb94164ed6d60938b4de6e40ab (patch)
treea37748c574803d05137347f59533076f3a1e270a /gst-libs
parentcbcc01173b296aac109d89f42d59c6e8a170df90 (diff)
adaptivedemux: fix log integer format
range_start/range_end shall be logged as G_GINT64_FORMAT https://bugzilla.gnome.org/show_bug.cgi?id=791735
Diffstat (limited to 'gst-libs')
-rw-r--r--gst-libs/gst/adaptivedemux/gstadaptivedemux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst-libs/gst/adaptivedemux/gstadaptivedemux.c b/gst-libs/gst/adaptivedemux/gstadaptivedemux.c
index 5867ed056..02f151e0f 100644
--- a/gst-libs/gst/adaptivedemux/gstadaptivedemux.c
+++ b/gst-libs/gst/adaptivedemux/gstadaptivedemux.c
@@ -4287,7 +4287,7 @@ gst_adaptive_demux_stream_update_fragment_info (GstAdaptiveDemux * demux,
GST_TIME_ARGS (stream->fragment.timestamp),
GST_TIME_ARGS (stream->fragment.duration));
GST_LOG_OBJECT (stream->pad,
- "range start:%" G_GUINT64_FORMAT " end:%" G_GUINT64_FORMAT,
+ "range start:%" G_GINT64_FORMAT " end:%" G_GINT64_FORMAT,
stream->fragment.range_start, stream->fragment.range_end);
}