1
0
mirror of https://github.com/irssi/irssi.git synced 2024-06-23 06:35:36 +00:00

Merge pull request #68 from ailin-nemui/gint64fmt

use gint64 define
This commit is contained in:
ailin-nemui 2022-02-19 11:00:34 +01:00 committed by GitHub
commit cf6bc31172
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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);

View File

@ -544,7 +544,10 @@ static void cmd_ping(const char *data, IRC_SERVER_REC *server, WI_ITEM_REC *item
tv = g_get_real_time();
str = g_strdup_printf("%s PING %ld %ld", data, tv / G_TIME_SPAN_SECOND, tv % G_TIME_SPAN_SECOND);
str = g_strdup_printf("%s PING "
"%" G_GINT64_FORMAT " "
"%" G_GINT64_FORMAT,
data, tv / G_TIME_SPAN_SECOND, tv % G_TIME_SPAN_SECOND);
signal_emit("command ctcp", 3, str, server, item);
g_free(str);
}