summaryrefslogtreecommitdiff
path: root/src/input/input_rtp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/input/input_rtp.c')
-rw-r--r--src/input/input_rtp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/input/input_rtp.c b/src/input/input_rtp.c
index 0e8c4bb5f..2d6097992 100644
--- a/src/input/input_rtp.c
+++ b/src/input/input_rtp.c
@@ -88,20 +88,20 @@ extern int errno;
#ifdef __GNUC__
#define LOG_MSG_STDERR(xine, message, args...) { \
- xine_log(xine, XINE_LOG_INPUT, message, ##args); \
+ xine_log(xine, XINE_LOG_MSG, message, ##args); \
fprintf(stderr, message, ##args); \
}
#define LOG_MSG(xine, message, args...) { \
- xine_log(xine, XINE_LOG_INPUT, message, ##args); \
+ xine_log(xine, XINE_LOG_MSG, message, ##args); \
printf(message, ##args); \
}
#else
#define LOG_MSG_STDERR(xine, ...) { \
- xine_log(xine, XINE_LOG_INPUT, __VA_ARGS__); \
+ xine_log(xine, XINE_LOG_MSG, __VA_ARGS__); \
fprintf(stderr, __VA_ARGS__); \
}
#define LOG_MSG(xine, ...) { \
- xine_log(xine, XINE_LOG_INPUT, __VA_ARGS__); \
+ xine_log(xine, XINE_LOG_MSG, __VA_ARGS__); \
printf(__VA_ARGS__); \
}
#endif