From 6a4dd49e2ce045057d52264ee2a96a18c92d1a64 Mon Sep 17 00:00:00 2001 From: Hans Petter Selasky Date: Fri, 3 May 2013 10:13:29 +0000 Subject: [PATCH] Always put space before the comma before ##__VA_ARGS__ due to subtle compiler differences. --- sys/dev/usb/usb_debug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/usb/usb_debug.h b/sys/dev/usb/usb_debug.h index 038ba7f40ba..e30f2c2c83d 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__)