Jon Griffiths a écrit :
Hi,
Subject says it all.
+ dbg_printf("%s", val_int ? "true" : "false"); what about the simpler: + dbg_printf(val_int ? "true" : "false");
A+
what about the simpler:
dbg_printf(val_int ? "true" : "false");
Works for me. I've re-sent the patch.
Cheers Jon