Browse Source

* 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
pull/2/head
Christophe Massiot 27 years ago
parent
commit
a7740034ba
  1. 4
      include/intf_msg.h

4
include/intf_msg.h

@ -98,8 +98,8 @@ void _intf_DbgMsgImm ( char *psz_file, char *psz_function, int i_line,
#else
/* Non-DEBUG mode */
#define intf_DbgMsg( format, args... ) ;
#define intf_DbgMsgImm( format, args...) ;
#define intf_DbgMsg( format, args... )
#define intf_DbgMsgImm( format, args...)
#endif

Loading…
Cancel
Save