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