diff options
author | obrien <obrien@FreeBSD.org> | 2001-12-10 05:58:28 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2001-12-10 05:58:28 +0000 |
commit | a3979449a5140f363b229922ee01cfb84ab21d29 (patch) | |
tree | 86de2bff03b858d9843606c78dbe81699e9eb59b /sys | |
parent | 330a1032c131a6a964d3f1a8a0c5add73d765307 (diff) | |
download | FreeBSD-src-a3979449a5140f363b229922ee01cfb84ab21d29.zip FreeBSD-src-a3979449a5140f363b229922ee01cfb84ab21d29.tar.gz |
Update to C99, s/__FUNCTION__/__func__/.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/iconv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sys/iconv.h b/sys/sys/iconv.h index 4764aaf..0f20129 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 |