Commit 882ff91b authored by Christophe Massiot's avatar Christophe Massiot

Un #ifdef DEBUG qui manquait et qui faisait que ca compilait pas sans le DEBUG.

--Meuuh
parent d305d23a
...@@ -306,7 +306,9 @@ static void QueueMsg(interface_msg_t *p_intf_msg, int i_type, char *psz_format, ...@@ -306,7 +306,9 @@ static void QueueMsg(interface_msg_t *p_intf_msg, int i_type, char *psz_format,
*/ */
msg.i_type = i_type; msg.i_type = i_type;
msg.psz_msg = psz_str; msg.psz_msg = psz_str;
#ifdef DEBUG
msg.date = mdate(); msg.date = mdate();
#endif
PrintMsg( &msg ); /* print message */ PrintMsg( &msg ); /* print message */
free( psz_str ); /* free message data */ free( psz_str ); /* free message data */
......
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