SurJector
26-05-2007, 17:03
At line 23 of file infosvr.c,
#define PRINT(fmt, args...) printf(stderr, fmt, ## args)
should be changed to
#define PRINT(fmt, args...) fprintf(stderr, fmt, ## args)
This corrects some of the warnings.
I don't know if the PRINT actually happens (but in that case infosvr would die immediately).
Thanks for the nice firmware.
#define PRINT(fmt, args...) printf(stderr, fmt, ## args)
should be changed to
#define PRINT(fmt, args...) fprintf(stderr, fmt, ## args)
This corrects some of the warnings.
I don't know if the PRINT actually happens (but in that case infosvr would die immediately).
Thanks for the nice firmware.