From 88a6c491a26e803200bbe3bbe0175019458f51c2 Mon Sep 17 00:00:00 2001 From: Sebastien Helleu Date: Fri, 31 Aug 2007 13:26:51 +0000 Subject: [PATCH] Removed compilation warning when iconv is not found --- src/common/util.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/util.c b/src/common/util.c index 1485d2f21..4fe9395c5 100644 --- a/src/common/util.c +++ b/src/common/util.c @@ -292,6 +292,7 @@ weechat_iconv (int from_utf8, char *from_code, char *to_code, char *string) outbuf = strdup (string); #else /* make C compiler happy */ + (void) from_utf8; (void) from_code; (void) to_code; outbuf = strdup (string);