Commit a7740034 authored by Christophe Massiot's avatar Christophe Massiot

* Correction d'un bug ou quand on ne definait pas le DEBUG, il

remplacait les intf_DbgMsg par des ;, ce qui n'est pas cool pour les
if ... else sans accolades (input_psi.c).

--Meuuh
parent 882ff91b
...@@ -98,8 +98,8 @@ void _intf_DbgMsgImm ( char *psz_file, char *psz_function, int i_line, ...@@ -98,8 +98,8 @@ void _intf_DbgMsgImm ( char *psz_file, char *psz_function, int i_line,
#else #else
/* Non-DEBUG mode */ /* Non-DEBUG mode */
#define intf_DbgMsg( format, args... ) ; #define intf_DbgMsg( format, args... )
#define intf_DbgMsgImm( format, args...) ; #define intf_DbgMsgImm( format, args...)
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment