use gint64 define

This commit is contained in:
Ailin Nemui 2022-02-19 00:34:06 +01:00
commit 9b73d152fe
2 changed files with 8 additions and 2 deletions

View file

@ -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);