mirror of
https://github.com/weechat/weechat.git
synced 2026-07-05 01:03:14 +02:00
core: fix cast of time_t (to "long long" instead of "long") (closes #1051)
This commit is contained in:
@@ -1209,7 +1209,7 @@ irc_redirect_print_log (struct t_irc_server *server)
|
||||
weechat_log_printf (" timeout . . . . . . : %d", ptr_redirect->timeout);
|
||||
weechat_log_printf (" command . . . . . . : '%s'", ptr_redirect->command);
|
||||
weechat_log_printf (" assigned_to_command : %d", ptr_redirect->assigned_to_command);
|
||||
weechat_log_printf (" start_time. . . . . : %ld", ptr_redirect->start_time);
|
||||
weechat_log_printf (" start_time. . . . . : %lld", (long long)ptr_redirect->start_time);
|
||||
weechat_log_printf (" cmd_start . . . . . : 0x%lx (hashtable: '%s')",
|
||||
ptr_redirect->cmd_start,
|
||||
weechat_hashtable_get_string (ptr_redirect->cmd_start, "keys_values"));
|
||||
|
||||
Reference in New Issue
Block a user