diff options
Diffstat (limited to 'gst/multifile/gstmultifilesrc.c')
-rw-r--r-- | gst/multifile/gstmultifilesrc.c | 3 |
1 files changed, 2 insertions, 1 deletions
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)); } } |