mirror of
https://github.com/irssi/irssi.git
synced 2026-08-09 03:40:16 +02:00
use gint64 define
This commit is contained in:
parent
d9b181e4a1
commit
9b73d152fe
2 changed files with 8 additions and 2 deletions
|
|
@ -128,7 +128,10 @@ static void ctcp_ping_reply(IRC_SERVER_REC *server, const char *data,
|
|||
|
||||
g_return_if_fail(data != NULL);
|
||||
|
||||
if (sscanf(data, "%ld %ld", &tv, &tv2) < 1) {
|
||||
if (sscanf(data,
|
||||
"%" G_GINT64_FORMAT " "
|
||||
"%" G_GINT64_FORMAT,
|
||||
&tv, &tv2) < 1) {
|
||||
char *tmp = g_strconcat("PING ", data, NULL);
|
||||
ctcp_default_reply(server, tmp, nick, addr, target);
|
||||
g_free(tmp);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue