summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Roitzsch <mroi@users.sourceforge.net>2003-02-11 15:12:42 +0000
committerMichael Roitzsch <mroi@users.sourceforge.net>2003-02-11 15:12:42 +0000
commit871251e4e894754ba0eaf9fb3ddecff131c30a82 (patch)
treed207cc6da842a678ea2efa8b5c8c506f859b4582 /src
parent9896a9d84ace574f0a4efa27912639249cefe036 (diff)
downloadxine-lib-871251e4e894754ba0eaf9fb3ddecff131c30a82.tar.gz
xine-lib-871251e4e894754ba0eaf9fb3ddecff131c30a82.tar.bz2
fix broken macro, with regards to Jeff Smith, who sent the patch
CVS patchset: 4131 CVS date: 2003/02/11 15:12:42
Diffstat (limited to 'src')
-rw-r--r--src/input/libdvdnav/read_cache.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/input/libdvdnav/read_cache.c b/src/input/libdvdnav/read_cache.c
index 2029881c7..751560206 100644
--- a/src/input/libdvdnav/read_cache.c
+++ b/src/input/libdvdnav/read_cache.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: read_cache.c,v 1.5 2002/11/18 12:41:16 mroi Exp $
+ * $Id: read_cache.c,v 1.6 2003/02/11 15:12:42 mroi Exp $
*
*/
@@ -106,13 +106,13 @@ struct read_cache_s {
#ifdef __GNUC__
# if READ_CACHE_TRACE
-# define dprintf(fmt, args...) fprintf(MSG_OUT, "libdvdnav: %s: "fmt, __func__ , ## arg
+# define dprintf(fmt, args...) fprintf(MSG_OUT, "libdvdnav: %s: "fmt, __func__ , ## args)
# else
# define dprintf(fmt, args...) /* Nowt */
# endif
#else
# if READ_CACHE_TRACE
-# define dprintf(fmt, ...) fprintf(MSG_OUT, "libdvdnav: %s: "fmt, __func__ , __VA_ARGS_
+# define dprintf(fmt, ...) fprintf(MSG_OUT, "libdvdnav: %s: "fmt, __func__ , __VA_ARGS__)
# else
# define dprintf(fmt, ...) /* Nowt */
# endif