summaryrefslogtreecommitdiff
path: root/src/input/input_http.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/input/input_http.c')
-rw-r--r--src/input/input_http.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input/input_http.c b/src/input/input_http.c
index cb5cfae38..9193bc5f6 100644
--- a/src/input/input_http.c
+++ b/src/input/input_http.c
@@ -53,11 +53,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