mirror of
https://github.com/weechat/weechat.git
synced 2026-06-29 22:36:38 +02:00
core: convert "long long" to "unsigned long long" in functions util_get_microseconds_string and util_parse_delay
This commit is contained in:
@@ -865,7 +865,9 @@ debug_display_time_elapsed (struct timeval *time1, struct timeval *time2,
|
||||
|
||||
gettimeofday (&debug_timeval_end, NULL);
|
||||
diff = util_timeval_diff (time1, time2);
|
||||
str_diff = util_get_microseconds_string (diff);
|
||||
if (diff < 0)
|
||||
diff *= -1;
|
||||
str_diff = util_get_microseconds_string ((unsigned long long)diff);
|
||||
|
||||
if (display)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user