1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-25 04:16:38 +02:00

Fix display problem with bar item "away" in IRC plugin

This commit is contained in:
Sebastien Helleu
2009-06-07 11:52:21 +02:00
parent 9a45c8995e
commit 1bbafc3d4e
+1 -1
View File
@@ -57,7 +57,7 @@ irc_bar_item_away (void *data, struct t_gui_bar_item *item,
if (server && server->is_away)
{
length = strlen (_("away") + 64 + 1);
length = strlen (_("away")) + 64 + 1;
buf = malloc (length);
if (buf)
{