changeset 26079:d6b05b1a9b3f

TARGET_OS2 is never set, use __OS2__ instead.
author diego
date Thu, 28 Feb 2008 18:31:35 +0000
parents 24a9193a0188
children 90e9ac3ee4c0
files mp_msg.h
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mp_msg.h	Thu Feb 28 18:19:10 2008 +0000
+++ b/mp_msg.h	Thu Feb 28 18:31:35 2008 +0000
@@ -111,7 +111,7 @@
 
 #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 @@
 
 const char* filename_recode(const char* filename);
 
-#endif /* TARGET_OS2 */
+#endif /* __OS2__ */
 
 #endif /* MPLAYER_MP_MSG_H */