I found the GNU extension to turn on pritnf style format checking! In debug.h,
make this your declaration of trace():

void trace(int level, char *formatstring, ...)
         __attribute__((format(printf, 2, 3)));

Voila, tons of errors next time you make.

Aaron

Reply via email to