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/input/vcd | |
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/input/vcd')
-rw-r--r-- | src/input/vcd/xineplug_inp_vcd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/input/vcd/xineplug_inp_vcd.c b/src/input/vcd/xineplug_inp_vcd.c index 4612d7425..22a9f5e17 100644 --- a/src/input/vcd/xineplug_inp_vcd.c +++ b/src/input/vcd/xineplug_inp_vcd.c @@ -1,5 +1,5 @@ /* - $Id: xineplug_inp_vcd.c,v 1.47 2006/04/21 22:34:19 dsalt Exp $ + $Id: xineplug_inp_vcd.c,v 1.48 2006/06/18 20:29:04 dgp85 Exp $ Copyright (C) 2002, 2003, 2004, 2005 Rocky Bernstein <rocky@panix.com> @@ -261,7 +261,7 @@ vcd_add_mrl_slot(vcd_input_class_t *this, const char *mrl, off_t size, this->mrls[*i] = malloc(sizeof(xine_mrl_t)); if (NULL==this->mrls[*i]) { - LOG_ERR("Can't malloc %d bytes for MRL slot %d (%s)", + LOG_ERR("Can't malloc %zu bytes for MRL slot %u (%s)", sizeof(xine_mrl_t), *i, mrl); return; } @@ -272,7 +272,7 @@ vcd_add_mrl_slot(vcd_input_class_t *this, const char *mrl, off_t size, this->mrls[*i]->mrl = (char *) malloc(strlen(mrl) + 1); if (NULL==this->mrls[*i]->mrl) { - LOG_ERR("Can't malloc %d bytes for MRL name %s", sizeof(xine_mrl_t), mrl); + LOG_ERR("Can't malloc %zu bytes for MRL name %s", sizeof(xine_mrl_t), mrl); } else { sprintf(this->mrls[*i]->mrl, "%s", mrl); } |