diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2006-04-21 22:34:19 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2006-04-21 22:34:19 +0000 |
commit | 209a48cd6a925a73de77b9e36747385dc0ec9168 (patch) | |
tree | cb60ec68fe0cd0c9e1eabe97712fc45675348622 /src | |
parent | 09d968bfd70131cf163af25dbbeea640d6ab04bc (diff) | |
download | xine-lib-209a48cd6a925a73de77b9e36747385dc0ec9168.tar.gz xine-lib-209a48cd6a925a73de77b9e36747385dc0ec9168.tar.bz2 |
Wrong struct member (printf fixup).
CVS patchset: 7974
CVS date: 2006/04/21 22:34:19
Diffstat (limited to 'src')
-rw-r--r-- | src/input/vcd/xineplug_inp_vcd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input/vcd/xineplug_inp_vcd.c b/src/input/vcd/xineplug_inp_vcd.c index 61b20cf2d..4612d7425 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.46 2006/04/18 13:51:33 hadess Exp $ + $Id: xineplug_inp_vcd.c,v 1.47 2006/04/21 22:34:19 dsalt Exp $ Copyright (C) 2002, 2003, 2004, 2005 Rocky Bernstein <rocky@panix.com> @@ -370,7 +370,7 @@ vcd_build_mrl_list(vcd_input_class_t *class, char *vcd_device) class->mrls = calloc(class->num_mrls, sizeof(xine_mrl_t *)); if (NULL == class->mrls) { - LOG_ERR("Can't calloc %d MRL entries", class->mrls); + LOG_ERR("Can't calloc %d MRL entries", class->num_mrls); class->num_mrls = 0; return false; } |