summaryrefslogtreecommitdiffstats
path: root/sys/kern/subr_mchain.c
diff options
context:
space:
mode:
authormarkm <markm@FreeBSD.org>2002-07-15 13:15:31 +0000
committermarkm <markm@FreeBSD.org>2002-07-15 13:15:31 +0000
commit6e3c874bfd45c244e7275acb8e1964f2bda36cc3 (patch)
tree0496c0c62c74fbabbe730d590ffa11130503930d /sys/kern/subr_mchain.c
parentaee41bc9a80ecba98c5bae5cb7a33a02c104bb73 (diff)
downloadFreeBSD-src-6e3c874bfd45c244e7275acb8e1964f2bda36cc3.zip
FreeBSD-src-6e3c874bfd45c244e7275acb8e1964f2bda36cc3.tar.gz
Convert GNU-styled variadic macros to ISO(9x) style.
Diffstat (limited to 'sys/kern/subr_mchain.c')
-rw-r--r--sys/kern/subr_mchain.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/kern/subr_mchain.c b/sys/kern/subr_mchain.c
index 1a8c4bd..a222267 100644
--- a/sys/kern/subr_mchain.c
+++ b/sys/kern/subr_mchain.c
@@ -45,11 +45,11 @@
MODULE_VERSION(libmchain, 1);
-#define MBERROR(format, args...) printf("%s(%d): "format, __func__ , \
- __LINE__ ,## args)
+#define MBERROR(format, ...) printf("%s(%d): "format, __func__ , \
+ __LINE__ , ## __VA_ARGS__)
-#define MBPANIC(format, args...) printf("%s(%d): "format, __func__ , \
- __LINE__ ,## args)
+#define MBPANIC(format, ...) printf("%s(%d): "format, __func__ , \
+ __LINE__ , ## __VA_ARGS__)
/*
* Various helper functions
OpenPOWER on IntegriCloud