1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-17 10:26:15 +00:00

The previous ANSIfication did not take into account earlier,

non-compliant compilers. Revert to the compatible form to allow
upgrade-builds.
This commit is contained in:
Mark Murray 2002-05-24 09:40:51 +00:00
parent f1f239b30d
commit 1422d23663
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=97236

View File

@ -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 */