1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-01 04:14:16 -04:00

Removed trigraphs by adding "" in the middle.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1750 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-08-14 00:53:56 +00:00 committed by cras
parent 1cd033943a
commit 51b1d80fbe

View File

@ -402,11 +402,11 @@ static void statusbar_lag(SBAR_ITEM_REC *item, int get_size_only)
g_string_sprintfa(str, "%d.%02d", server->lag/1000,
(server->lag % 1000)/10);
if (lag_unknown)
g_string_append(str, " (??)");
g_string_append(str, " (?""?)");
}
} else {
/* big lag, still waiting .. */
g_string_sprintfa(str, "%ld (??)",
g_string_sprintfa(str, "%ld (?""?)",
(long) (now-server->lag_sent));
}