diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2007-08-31 13:26:51 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2007-08-31 13:26:51 +0000 |
commit | 88a6c491a26e803200bbe3bbe0175019458f51c2 (patch) | |
tree | 7bce543e2b2389475745dbb5ab17851683c74b42 | |
parent | edb21c362a4a9bd036c1eae911a5e3332e218d8c (diff) | |
download | weechat-88a6c491a26e803200bbe3bbe0175019458f51c2.zip |
Removed compilation warning when iconv is not found
-rw-r--r-- | src/common/util.c | 1 |
1 files changed, 1 insertions, 0 deletions
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); |