diff options
author | phintuka <phintuka> | 2006-08-16 13:52:34 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2006-08-16 13:52:34 +0000 |
commit | 069ae141e0d0f6857a02fc7d4a4a0251fa3fa8c7 (patch) | |
tree | ee4ace58d40c4bca3013836eacd286ff1aad0275 | |
parent | a84bdd2a238d525d7e63cbbc569821937ec785f5 (diff) | |
download | xineliboutput-069ae141e0d0f6857a02fc7d4a4a0251fa3fa8c7.tar.gz xineliboutput-069ae141e0d0f6857a02fc7d4a4a0251fa3fa8c7.tar.bz2 |
removed unnecessarily #if...#endif
-rw-r--r-- | xine_input_vdr.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/xine_input_vdr.c b/xine_input_vdr.c index 3a9cd84d..73b590df 100644 --- a/xine_input_vdr.c +++ b/xine_input_vdr.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: xine_input_vdr.c,v 1.22 2006-08-04 12:28:21 phintuka Exp $ + * $Id: xine_input_vdr.c,v 1.23 2006-08-16 13:52:34 phintuka Exp $ * */ @@ -66,17 +66,16 @@ #define LOG_MODULENAME "[input_vdr] " #define SysLogLevel iSysLogLevel + #include "logdefs.h" +#undef x_syslog +#define x_syslog syslog_with_tid + int iSysLogLevel = 1; int bLogToSysLog = 0; int bSymbolsFound = 0; -#if !defined(XINELIBOUTPUT_DEBUG_STDOUT) && \ - !defined(XINELIBOUTPUT_DEBUG_STDERR) -#undef x_syslog -#define x_syslog syslog_with_tid - _syscall0(pid_t, gettid) static void syslog_with_tid(int level, const char *fmt, ...) @@ -92,7 +91,6 @@ static void syslog_with_tid(int level, const char *fmt, ...) } va_end(argp); } -#endif static void SetupLogLevel(void) { |