comparison mp_msg.h @ 22289:780caed72ac7

cosmetics: typo fixes, usefuLL --> useful and aswell --> as well
author diego
date Thu, 22 Feb 2007 00:18:10 +0000
parents ebd2d5efb11b
children f3d7a1b58a82
comparison
equal deleted inserted replaced
22288:da8ba4c0fc57 22289:780caed72ac7
119 #ifdef __GNUC__ 119 #ifdef __GNUC__
120 void mp_msg(int mod, int lev, const char *format, ... ) __attribute__ ((format (printf, 3, 4))); 120 void mp_msg(int mod, int lev, const char *format, ... ) __attribute__ ((format (printf, 3, 4)));
121 # ifdef MP_DEBUG 121 # ifdef MP_DEBUG
122 # define mp_dbg(mod,lev, args... ) mp_msg(mod, lev, ## args ) 122 # define mp_dbg(mod,lev, args... ) mp_msg(mod, lev, ## args )
123 # else 123 # else
124 # define mp_dbg(mod,lev, args... ) /* only usefull for developers */ 124 # define mp_dbg(mod,lev, args... ) /* only useful for developers */
125 # endif 125 # endif
126 #else // not GNU C 126 #else // not GNU C
127 void mp_msg(int mod, int lev, const char *format, ... ); 127 void mp_msg(int mod, int lev, const char *format, ... );
128 # ifdef MP_DEBUG 128 # ifdef MP_DEBUG
129 # define mp_dbg(mod,lev, ... ) mp_msg(mod, lev, __VA_ARGS__) 129 # define mp_dbg(mod,lev, ... ) mp_msg(mod, lev, __VA_ARGS__)
130 # else 130 # else
131 # define mp_dbg(mod,lev, ... ) /* only usefull for developers */ 131 # define mp_dbg(mod,lev, ... ) /* only useful for developers */
132 # endif 132 # endif
133 #endif 133 #endif
134 134
135 const char* filename_recode(const char* filename); 135 const char* filename_recode(const char* filename);
136 136