diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-06-18 20:29:03 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-06-18 20:29:03 +0000 |
commit | 800eff24a20af48b2f5109a0bf9f1da4bf2a2c14 (patch) | |
tree | a3dc27ec7b81d7f513e946803493ee4827bd1c5b /src/dxr3 | |
parent | 17e6b5f782e42b8a2477537436f49bc0040ce969 (diff) | |
download | xine-lib-800eff24a20af48b2f5109a0bf9f1da4bf2a2c14.tar.gz xine-lib-800eff24a20af48b2f5109a0bf9f1da4bf2a2c14.tar.bz2 |
Misc warnings fixes.
CVS patchset: 8055
CVS date: 2006/06/18 20:29:03
Diffstat (limited to 'src/dxr3')
-rw-r--r-- | src/dxr3/dxr3_decode_spu.c | 4 | ||||
-rw-r--r-- | src/dxr3/dxr3_decode_video.c | 4 | ||||
-rw-r--r-- | src/dxr3/video_out_dxr3.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/dxr3/dxr3_decode_spu.c b/src/dxr3/dxr3_decode_spu.c index 29b5c9463..c29bf6789 100644 --- a/src/dxr3/dxr3_decode_spu.c +++ b/src/dxr3/dxr3_decode_spu.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: dxr3_decode_spu.c,v 1.54 2006/06/02 22:18:57 dsalt Exp $ + * $Id: dxr3_decode_spu.c,v 1.55 2006/06/18 20:29:04 dgp85 Exp $ */ /* dxr3 spu decoder plugin. @@ -545,7 +545,7 @@ static void dxr3_spudec_decode_data(spu_decoder_t *this_gen, buf_element_t *buf) } if (written != buf->size) xprintf(this->stream->xine, XINE_VERBOSITY_DEBUG, - "dxr3_decode_spu: Could only write %d of %d spu bytes.\n", written, buf->size); + "dxr3_decode_spu: Could only write %zd of %d spu bytes.\n", written, buf->size); pthread_mutex_unlock(&this->dxr3_vo->spu_device_lock); } diff --git a/src/dxr3/dxr3_decode_video.c b/src/dxr3/dxr3_decode_video.c index 58583d1d8..c2237dff5 100644 --- a/src/dxr3/dxr3_decode_video.c +++ b/src/dxr3/dxr3_decode_video.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: dxr3_decode_video.c,v 1.62 2006/06/02 22:18:57 dsalt Exp $ + * $Id: dxr3_decode_video.c,v 1.63 2006/06/18 20:29:04 dgp85 Exp $ */ /* dxr3 video decoder plugin. @@ -622,7 +622,7 @@ static void dxr3_decode_data(video_decoder_t *this_gen, buf_element_t *buf) } if (written != buf->size) xprintf(this->stream->xine, XINE_VERBOSITY_DEBUG, - "dxr3_decode_video: Could only write %d of %d video bytes.\n", written, buf->size); + "dxr3_decode_video: Could only write %zd of %d video bytes.\n", written, buf->size); } static void dxr3_reset(video_decoder_t *this_gen) diff --git a/src/dxr3/video_out_dxr3.c b/src/dxr3/video_out_dxr3.c index 47d2493a7..b81d8ac01 100644 --- a/src/dxr3/video_out_dxr3.c +++ b/src/dxr3/video_out_dxr3.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: video_out_dxr3.c,v 1.115 2006/06/17 15:20:56 dgp85 Exp $ + * $Id: video_out_dxr3.c,v 1.116 2006/06/18 20:29:04 dgp85 Exp $ */ /* mpeg1 encoding video out plugin for the dxr3. @@ -897,7 +897,7 @@ static void dxr3_overlay_end(vo_driver_t *this_gen, vo_frame_t *frame_gen) "video_out_dxr3: spu device write failed (%s)\n", strerror(errno)); else if (written != this->spu_enc->size) xprintf(this->class->xine, XINE_VERBOSITY_DEBUG, - "video_out_dxr3: Could only write %d of %d spu bytes.\n", written, this->spu_enc->size); + "video_out_dxr3: Could only write %zd of %d spu bytes.\n", written, this->spu_enc->size); /* set clipping */ btn.color = 0x7654; btn.contrast = |