summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarkm <markm@FreeBSD.org>2002-05-24 09:40:51 +0000
committermarkm <markm@FreeBSD.org>2002-05-24 09:40:51 +0000
commit1ccb024996b7c1dbe79c7e2759dae4dffa33eb67 (patch)
tree9b6213e7b204f2828d1e6f1c6eacc2a87b7096f2
parenta270561fea792876e8d5b73c5d0b3525cb65a9b4 (diff)
downloadFreeBSD-src-1ccb024996b7c1dbe79c7e2759dae4dffa33eb67.zip
FreeBSD-src-1ccb024996b7c1dbe79c7e2759dae4dffa33eb67.tar.gz
The previous ANSIfication did not take into account earlier,
non-compliant compilers. Revert to the compatible form to allow upgrade-builds.
-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 affcc52..0f20129 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, ...) printf("%s: "format, __func__ , __VA_ARGS__)
+#define ICDEBUG(format, args...) printf("%s: "format, __func__ ,## args)
#else
-#define ICDEBUG(format, ...)
+#define ICDEBUG(format, args...)
#endif
#endif /* !_KERNEL */
OpenPOWER on IntegriCloud