From ca6a88a8fc7d5917dcf04a689dcce562532a32fd Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Thu, 25 Jan 2007 12:05:11 +0000 Subject: gst/: Use proper print statements. Original commit message from CVS: * gst/multifile/gstmultifilesink.c: (gst_multi_file_sink_class_init): * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_class_init): * gst/mve/gstmvedemux.c: (gst_mve_video_create_buffer), (gst_mve_video_palette), (gst_mve_video_code_map), (gst_mve_audio_init), (gst_mve_audio_data), (gst_mve_timer_create), (gst_mve_demux_chain): * gst/mve/gstmvemux.c: (gst_mve_mux_push_chunk): * gst/mve/mveaudioenc.c: (mve_compress_audio): * gst/mve/mvevideodec16.c: (ipvideo_copy_block): * gst/mve/mvevideodec8.c: (ipvideo_copy_block): * gst/mve/mvevideoenc16.c: (mve_encode_frame16): * gst/mve/mvevideoenc8.c: (mve_encode_frame8): Use proper print statements. Fixes build on mac os x. oo look at me my name is edward i'm hacking on macos wooo --- gst/multifile/gstmultifilesink.c | 3 ++- gst/multifile/gstmultifilesrc.c | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'gst/multifile') 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)); } } -- cgit v1.2.1