diff options
author | Arnavion <arnavion@gmail.com> | 2014-12-15 10:25:28 -0800 |
---|---|---|
committer | Arnavion <arnavion@gmail.com> | 2014-12-15 10:25:28 -0800 |
commit | ec7a0d6e13f0fa66299cab7fdad8e639e01ee9dd (patch) | |
tree | 9cd90ef8d8411f0278b69ac3155be60b7ff99643 /src/common/proto-irc.c | |
parent | a86b03e939391f3567cc644800e1b13dceda1139 (diff) |
Fixed some more signed-unsigned-comparison warnings.
Diffstat (limited to 'src/common/proto-irc.c')
-rw-r--r-- | src/common/proto-irc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/proto-irc.c b/src/common/proto-irc.c index 2bfcb393..d5a8fc04 100644 --- a/src/common/proto-irc.c +++ b/src/common/proto-irc.c @@ -1509,7 +1509,7 @@ irc_inline (server *serv, char *buf, int len) handle_message_tags(serv, tags, &tags_data); } - url_check_line (buf, len); + url_check_line (buf); /* split line into words and words_to_end_of_line */ process_data_init (pdibuf, buf, word, word_eol, FALSE, FALSE); |