diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2018-07-13 21:25:07 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2018-07-13 21:25:07 +0200 |
commit | bf48efffeceeedf705bf91cbb5a79ea18954041c (patch) | |
tree | 2f70d8f0f52700b912654ad92a5890ea0a9c4087 /src | |
parent | a205886d7a8f7320f9b1f482f9f3bfc913269b05 (diff) | |
download | weechat-bf48efffeceeedf705bf91cbb5a79ea18954041c.zip |
relay: fix compiler warnings on calls to snprintf
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/relay/irc/relay-irc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/relay/irc/relay-irc.c b/src/plugins/relay/irc/relay-irc.c index 475f15ee0..6c7f5aff3 100644 --- a/src/plugins/relay/irc/relay-irc.c +++ b/src/plugins/relay/irc/relay-irc.c @@ -599,7 +599,7 @@ relay_irc_get_line_info (struct t_relay_client *client, char **tags, char **message) { int i, num_tags, command, action, all_tags, length; - char str_tag[256], *pos, *message_no_color, str_time[256]; + char str_tag[512], *pos, *message_no_color, str_time[256]; const char *ptr_tag, *ptr_message, *ptr_nick, *ptr_nick1, *ptr_nick2; const char *ptr_host, *localvar_nick, *time_format; time_t msg_date; |