[MPlayer-cvslog] r26111 - trunk/mp_msg.h

diego subversion at mplayerhq.hu
Thu Feb 28 19:31:35 CET 2008


Author: diego
Date: Thu Feb 28 19:31:35 2008
New Revision: 26111

Log:
TARGET_OS2 is never set, use __OS2__ instead.


Modified:
   trunk/mp_msg.h

Modified: trunk/mp_msg.h
==============================================================================
--- trunk/mp_msg.h	(original)
+++ trunk/mp_msg.h	Thu Feb 28 19:31:35 2008
@@ -111,7 +111,7 @@ int mp_msg_test(int mod, int lev);
 
 #include "config.h"
 
-#ifdef TARGET_OS2
+#ifdef __OS2__
 // va_start/vsnprintf seems to be broken under OS2 :(
 #define mp_msg(mod,lev, fmt, args... ) do{if((lev)<=mp_msg_levels[mod]) printf( fmt, ## args );}while(0)
 #define mp_dbg(mod,lev, args... ) 
@@ -135,6 +135,6 @@ void mp_msg(int mod, int lev, const char
 
 const char* filename_recode(const char* filename);
 
-#endif /* TARGET_OS2 */
+#endif /* __OS2__ */
 
 #endif /* MPLAYER_MP_MSG_H */



More information about the MPlayer-cvslog mailing list