diff options
| author | Stefan Farfeleder <stefanf@FreeBSD.org> | 2006-07-17 09:33:24 +0000 |
|---|---|---|
| committer | Stefan Farfeleder <stefanf@FreeBSD.org> | 2006-07-17 09:33:24 +0000 |
| commit | 60cd58631809983448e085137c045f48355468d4 (patch) | |
| tree | a68c4bca283726434ed1b8cc33c4f639a1d607a9 /lib/libdevinfo | |
| parent | 33ef612ede9ee518ca18376556bce726d6229baf (diff) | |
Notes
Diffstat (limited to 'lib/libdevinfo')
| -rw-r--r-- | lib/libdevinfo/devinfo.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/libdevinfo/devinfo.c b/lib/libdevinfo/devinfo.c index 5ad68c3f046f..dbd02d0fba41 100644 --- a/lib/libdevinfo/devinfo.c +++ b/lib/libdevinfo/devinfo.c @@ -83,10 +83,13 @@ static int devinfo_initted = 0; static int devinfo_generation = 0; #if 0 -# define debug(fmt, args...) \ - fprintf(stderr, "%s:" fmt "\n", __func__ , ##args) +# define debug(...) do { \ + fprintf(stderr, "%s:", __func__); \ + fprintf(stderr, __VA_ARGS__); \ + fprintf(stderr, "\n"); \ +} while (0) #else -# define debug(fmt, args...) +# define debug(...) #endif /* |
