summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhselasky <hselasky@FreeBSD.org>2013-05-03 10:13:29 +0000
committerhselasky <hselasky@FreeBSD.org>2013-05-03 10:13:29 +0000
commite7d3a7e30391069104e12b19b90ea9f88e953498 (patch)
treeb4ff8bcfff8632bf692f1398ab5ac4283e174cbf
parent57751c101234923903b31c7a3c647344c8ce0b07 (diff)
downloadFreeBSD-src-e7d3a7e30391069104e12b19b90ea9f88e953498.zip
FreeBSD-src-e7d3a7e30391069104e12b19b90ea9f88e953498.tar.gz
Always put space before the comma before ##__VA_ARGS__ due to subtle compiler
differences.
-rw-r--r--sys/dev/usb/usb_debug.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/usb_debug.h b/sys/dev/usb/usb_debug.h
index 038ba7f..e30f2c2 100644
--- a/sys/dev/usb/usb_debug.h
+++ b/sys/dev/usb/usb_debug.h
@@ -38,7 +38,7 @@ extern int usb_debug;
#define DPRINTFN(n,fmt,...) do { \
if ((USB_DEBUG_VAR) >= (n)) { \
printf("%s: " fmt, \
- __FUNCTION__,## __VA_ARGS__); \
+ __FUNCTION__ ,##__VA_ARGS__); \
} \
} while (0)
#define DPRINTF(...) DPRINTFN(1, __VA_ARGS__)
OpenPOWER on IntegriCloud