mirror of
https://github.com/weechat/weechat.git
synced 2026-07-07 10:13:12 +02:00
core: fix cast of time_t (to "long long" instead of "long") (closes #1051)
This commit is contained in:
@@ -1686,9 +1686,9 @@ irc_channel_print_log (struct t_irc_channel *channel)
|
||||
ptr_nick_speaking;
|
||||
ptr_nick_speaking = ptr_nick_speaking->next_nick)
|
||||
{
|
||||
weechat_log_printf (" nick speaking time: '%s', time: %ld",
|
||||
weechat_log_printf (" nick speaking time: '%s', time: %lld",
|
||||
ptr_nick_speaking->nick,
|
||||
ptr_nick_speaking->time_last_message);
|
||||
(long long)ptr_nick_speaking->time_last_message);
|
||||
}
|
||||
}
|
||||
for (ptr_nick = channel->nicks; ptr_nick; ptr_nick = ptr_nick->next_nick)
|
||||
|
||||
Reference in New Issue
Block a user