mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Always put space before the comma before ##__VA_ARGS__ due to subtle compiler
differences.
This commit is contained in:
parent
5b0752bbc1
commit
6a4dd49e2c
1 changed files with 1 additions and 1 deletions
|
|
@ -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__)
|
||||
|
|
|
|||
Loading…
Reference in a new issue