Fix warnings due to macro varargs.

This commit is contained in:
Peter Wemm 2002-05-24 06:32:18 +00:00
parent ccde2810d9
commit daefef7cae

View File

@ -32,7 +32,7 @@
#define PPS_NAME "pps" /* our official name */
#define PRVERBOSE(arg...) if (bootverbose) printf(##arg);
#define PRVERBOSE(fmt, arg...) if (bootverbose) printf(fmt, ##arg);
struct pps_data {
struct ppb_device pps_dev;