From 12f539c6bb6f42e5a574e12be2ab209cf8b6450a Mon Sep 17 00:00:00 2001 From: Thiago Santos Date: Fri, 1 Apr 2011 16:52:48 -0300 Subject: [PATCH] hlsdemux: Another windows build fix Replace %lld with %u as GST_BUFFER_SIZE is a guint --- gst/hls/gsthlsdemux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/hls/gsthlsdemux.c b/gst/hls/gsthlsdemux.c index 50bbd73256..71a17d71e6 100644 --- a/gst/hls/gsthlsdemux.c +++ b/gst/hls/gsthlsdemux.c @@ -458,7 +458,7 @@ gst_hls_demux_fetcher_chain (GstPad * pad, GstBuffer * buf) goto done; } - GST_LOG_OBJECT (demux, "The uri fetcher received a new buffer of size %lld", + GST_LOG_OBJECT (demux, "The uri fetcher received a new buffer of size %u", GST_BUFFER_SIZE (buf)); if (demux->downloaded_uri == NULL) demux->downloaded_uri = buf;