input: fix possible crash in printing key combo names
[mplayer.git] / loader / debug.h
blobad3c9d5a464a4c7acf605f3f9a85741e991055a4
1 #ifndef MPLAYER_DEBUG_H
2 #define MPLAYER_DEBUG_H
4 #ifdef DEBUG
5 #define TRACE printf
6 #define dbg_printf printf
7 #else
8 #define TRACE(...)
9 #define dbg_printf(...)
10 #endif
12 #endif /* MPLAYER_DEBUG_H */