diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2014-08-02 16:17:30 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2014-08-02 16:17:30 +0200 |
commit | 6295adad6db050d42d608236fb2ba2e0f455c6a3 (patch) | |
tree | f0debd403d1d3c086b8cbe539a755f6de0de3e77 /src/plugins/relay/relay-command.c | |
parent | e29f01b4fb4f87cca68b8485a17559103ac978b5 (diff) | |
download | weechat-6295adad6db050d42d608236fb2ba2e0f455c6a3.zip |
relay: fix number of bytes sent/received on 32-bit systems
Diffstat (limited to 'src/plugins/relay/relay-command.c')
-rw-r--r-- | src/plugins/relay/relay-command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/relay/relay-command.c b/src/plugins/relay/relay-command.c index f5b29777c..664c65748 100644 --- a/src/plugins/relay/relay-command.c +++ b/src/plugins/relay/relay-command.c @@ -82,7 +82,7 @@ relay_command_client_list (int full) { weechat_printf (NULL, _(" %s%s%s (%s%s%s), started on: %s, last activity: %s, " - "bytes: %lu recv, %lu sent"), + "bytes: %llu recv, %llu sent"), RELAY_COLOR_CHAT_CLIENT, ptr_client->desc, RELAY_COLOR_CHAT, |