aboutsummaryrefslogtreecommitdiff
path: root/libexec/rtld-elf
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2006-03-28 18:26:47 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2006-03-28 18:26:47 +0000
commit1dc39023f8decb51e2433a1e336da5537888467f (patch)
treedafbe9ee9eba392f87f40931c6c0789a2ae47ba2 /libexec/rtld-elf
parent23a8b7859bb32b427cf830c5ab43c28f5df2a096 (diff)
downloadsrc-1dc39023f8decb51e2433a1e336da5537888467f.tar.gz
src-1dc39023f8decb51e2433a1e336da5537888467f.zip
Use C99's varadic macro syntax instead of gcc's.
Notes
Notes: svn path=/head/; revision=157219
Diffstat (limited to 'libexec/rtld-elf')
-rw-r--r--libexec/rtld-elf/debug.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/rtld-elf/debug.h b/libexec/rtld-elf/debug.h
index 3708df62cbe7..98fdfb4929c9 100644
--- a/libexec/rtld-elf/debug.h
+++ b/libexec/rtld-elf/debug.h
@@ -45,9 +45,9 @@ extern void debug_printf(const char *, ...) __printflike(1, 2);
extern int debug;
#ifdef DEBUG
-#define dbg(format, args...) debug_printf(format , ## args)
+#define dbg(...) debug_printf(__VA_ARGS__)
#else
-#define dbg(format, args...) ((void) 0)
+#define dbg(...) ((void) 0)
#endif
#ifndef COMPAT_32BIT