summaryrefslogtreecommitdiff
path: root/src/input/input_net.c
diff options
context:
space:
mode:
authorJuergen Keil <jkeil@users.sourceforge.net>2002-01-02 18:16:07 +0000
committerJuergen Keil <jkeil@users.sourceforge.net>2002-01-02 18:16:07 +0000
commit11b26a83b403b3f3661aa59cfc5c3f2c1a7e1705 (patch)
tree1bb9fc098e4b2ba6e7d66a793b7491d057cdf2e8 /src/input/input_net.c
parent671368008941ee43f9e541477eef8530ded71654 (diff)
downloadxine-lib-11b26a83b403b3f3661aa59cfc5c3f2c1a7e1705.tar.gz
xine-lib-11b26a83b403b3f3661aa59cfc5c3f2c1a7e1705.tar.bz2
Correct spelling of __VA_ARGS__ macro
CVS patchset: 1324 CVS date: 2002/01/02 18:16:07
Diffstat (limited to 'src/input/input_net.c')
-rw-r--r--src/input/input_net.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input/input_net.c b/src/input/input_net.c
index 682a4b784..2bbd85242 100644
--- a/src/input/input_net.c
+++ b/src/input/input_net.c
@@ -58,11 +58,11 @@ extern int errno;
}
#else
#define LOG_MSG_STDERR(xine, ...) { \
- xine_log(xine, XINE_LOG_INPUT, __VAR_ARGS__); \
+ xine_log(xine, XINE_LOG_INPUT, __VA_ARGS__); \
fprintf(stderr, __VA_ARGS__); \
}
#define LOG_MSG(xine, ...) { \
- xine_log(xine, XINE_LOG_INPUT, __VAR_ARGS__); \
+ xine_log(xine, XINE_LOG_INPUT, __VA_ARGS__); \
printf(__VA_ARGS__); \
}
#endif