summaryrefslogtreecommitdiffstats
path: root/gst/multifile
diff options
context:
space:
mode:
Diffstat (limited to 'gst/multifile')
-rw-r--r--gst/multifile/gstmultifilesink.c3
-rw-r--r--gst/multifile/gstmultifilesrc.c3
2 files changed, 4 insertions, 2 deletions
diff --git a/gst/multifile/gstmultifilesink.c b/gst/multifile/gstmultifilesink.c
index b7c5f842..4815bfb7 100644
--- a/gst/multifile/gstmultifilesink.c
+++ b/gst/multifile/gstmultifilesink.c
@@ -156,7 +156,8 @@ gst_multi_file_sink_class_init (GstMultiFileSinkClass * klass)
//gstbasesink_class->event = GST_DEBUG_FUNCPTR (gst_multi_file_sink_event);
if (sizeof (off_t) < 8) {
- GST_LOG ("No large file support, sizeof (off_t) = %u", sizeof (off_t));
+ GST_LOG ("No large file support, sizeof (off_t) = %" G_GSIZE_FORMAT,
+ sizeof (off_t));
}
}
diff --git a/gst/multifile/gstmultifilesrc.c b/gst/multifile/gstmultifilesrc.c
index c9ae5caa..10275dbe 100644
--- a/gst/multifile/gstmultifilesrc.c
+++ b/gst/multifile/gstmultifilesrc.c
@@ -144,7 +144,8 @@ gst_multi_file_src_class_init (GstMultiFileSrcClass * klass)
gstbasesrc_class->get_caps = gst_multi_file_src_getcaps;
if (sizeof (off_t) < 8) {
- GST_LOG ("No large file support, sizeof (off_t) = %u", sizeof (off_t));
+ GST_LOG ("No large file support, sizeof (off_t) = %" G_GSIZE_FORMAT,
+ sizeof (off_t));
}
}