summaryrefslogtreecommitdiffstats
path: root/sys/sys/iconv.h
diff options
context:
space:
mode:
authormarkm <markm@FreeBSD.org>2002-07-15 13:34:50 +0000
committermarkm <markm@FreeBSD.org>2002-07-15 13:34:50 +0000
commit604c6c5ec9b045ddad55b64b7f33f24e8fc41832 (patch)
tree2ea2aaf773b0afb6549d164d9f1d1bce83d69824 /sys/sys/iconv.h
parent5ac51e5b212ce73bdf5791ec07b3dd35d03b1eac (diff)
downloadFreeBSD-src-604c6c5ec9b045ddad55b64b7f33f24e8fc41832.zip
FreeBSD-src-604c6c5ec9b045ddad55b64b7f33f24e8fc41832.tar.gz
Convert GNU variadic macros to the ISO 9X variety.
Diffstat (limited to 'sys/sys/iconv.h')
-rw-r--r--sys/sys/iconv.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/iconv.h b/sys/sys/iconv.h
index 0f20129..affcc52 100644
--- a/sys/sys/iconv.h
+++ b/sys/sys/iconv.h
@@ -146,9 +146,9 @@ int iconv_converter_donestub(struct iconv_converter_class *dp);
int iconv_converter_handler(module_t mod, int type, void *data);
#ifdef ICONV_DEBUG
-#define ICDEBUG(format, args...) printf("%s: "format, __func__ ,## args)
+#define ICDEBUG(format, ...) printf("%s: "format, __func__ , __VA_ARGS__)
#else
-#define ICDEBUG(format, args...)
+#define ICDEBUG(format, ...)
#endif
#endif /* !_KERNEL */
OpenPOWER on IntegriCloud