Commit 95e2c6b4 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Disable the dangling callback warning for the time being

It might not always be a bug.
parent 64a3e713
...@@ -170,7 +170,7 @@ static void Destroy( variable_t *p_var ) ...@@ -170,7 +170,7 @@ static void Destroy( variable_t *p_var )
free( p_var->choices.p_values ); free( p_var->choices.p_values );
free( p_var->choices_text.p_values ); free( p_var->choices_text.p_values );
} }
#ifndef NDEBUG #if 0 // ndef NDEBUG
for (int i = 0; i < p_var->i_entries; i++) for (int i = 0; i < p_var->i_entries; i++)
{ {
const char *file = "?", *symbol = "?"; const char *file = "?", *symbol = "?";
......
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