diff options
author | Timo Sirainen <cras@irssi.org> | 2000-09-25 18:09:25 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2000-09-25 18:09:25 +0000 |
commit | c389144c2ac456c41a91d416d96df852848904a9 (patch) | |
tree | 22ebb625e2212fdf3880f190373cf7868b717fc0 | |
parent | 48a472728f3dc7b1ee4d01351f955208500a53af (diff) | |
download | irssi-c389144c2ac456c41a91d416d96df852848904a9.zip |
Ping replies should have displayed always with 3 decimals
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@669 dbcabf3a-b0e7-0310-adc4-f8d773084564
-rw-r--r-- | src/fe-common/irc/module-formats.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe-common/irc/module-formats.c b/src/fe-common/irc/module-formats.c index 52c81d18..2d0bb5e7 100644 --- a/src/fe-common/irc/module-formats.c +++ b/src/fe-common/irc/module-formats.c @@ -156,7 +156,7 @@ FORMAT_REC fecommon_irc_formats[] = { { "ctcp_reply", "CTCP %_$0%_ reply from %_$1%_%K:%n $2", 3, { 0, 0, 0 } }, { "ctcp_reply_channel", "CTCP %_$0%_ reply from %_$1%_ in channel %_$3%_%K:%n $2", 4, { 0, 0, 0, 0 } }, - { "ctcp_ping_reply", "CTCP %_PING%_ reply from %_$0%_: $1.$2 seconds", 3, { 0, 2, 2 } }, + { "ctcp_ping_reply", "CTCP %_PING%_ reply from %_$0%_: $1.$[-3.0]2 seconds", 3, { 0, 2, 2 } }, { "ctcp_requested", "%g>>> %_$0%_ %K[%g$1%K] %grequested %_$2%_ from %_$3", 4, { 0, 0, 0, 0 } }, /* ---- */ |