diff options
author | hselasky <hselasky@FreeBSD.org> | 2013-05-03 10:13:29 +0000 |
---|---|---|
committer | hselasky <hselasky@FreeBSD.org> | 2013-05-03 10:13:29 +0000 |
commit | e7d3a7e30391069104e12b19b90ea9f88e953498 (patch) | |
tree | b4ff8bcfff8632bf692f1398ab5ac4283e174cbf /sys/dev/usb | |
parent | 57751c101234923903b31c7a3c647344c8ce0b07 (diff) | |
download | FreeBSD-src-e7d3a7e30391069104e12b19b90ea9f88e953498.zip FreeBSD-src-e7d3a7e30391069104e12b19b90ea9f88e953498.tar.gz |
Always put space before the comma before ##__VA_ARGS__ due to subtle compiler
differences.
Diffstat (limited to 'sys/dev/usb')
-rw-r--r-- | sys/dev/usb/usb_debug.h | 2 |
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__) |