From 36048c2e3df9170b607a2bf02fce9ba10ccb17db Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Mon, 10 Dec 2001 05:58:28 +0000 Subject: [PATCH] Update to C99, s/__FUNCTION__/__func__/. --- sys/sys/iconv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys/iconv.h b/sys/sys/iconv.h index 4764aaf0bfd..0f20129a80f 100644 --- a/sys/sys/iconv.h +++ b/sys/sys/iconv.h @@ -146,7 +146,7 @@ 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, __FUNCTION__ ,## args) +#define ICDEBUG(format, args...) printf("%s: "format, __func__ ,## args) #else #define ICDEBUG(format, args...) #endif