diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2021-05-03 06:39:17 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2021-06-10 09:22:39 +0100 |
commit | bacb4d1b4df77c0f4ad940edcd75bbafef8efa9f (patch) | |
tree | 4d68acdcb64f24bfd59dc3ea79dafa098e28d5bf /server.c | |
parent | ad2f7642f2795fc1073c02cfa6348e48dfdfc45d (diff) | |
download | rtmux-bacb4d1b4df77c0f4ad940edcd75bbafef8efa9f.tar.gz rtmux-bacb4d1b4df77c0f4ad940edcd75bbafef8efa9f.tar.bz2 rtmux-bacb4d1b4df77c0f4ad940edcd75bbafef8efa9f.zip |
Fix warnings, from Jan Tache in GitHub issue 2692.
Diffstat (limited to 'server.c')
-rw-r--r-- | server.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -163,7 +163,8 @@ server_tidy_event(__unused int fd, __unused short events, __unused void *data) malloc_trim(0); #endif - log_debug("%s: took %llu milliseconds", __func__, get_timer() - t); + log_debug("%s: took %llu milliseconds", __func__, + (unsigned long long)(get_timer() - t)); evtimer_add(&server_ev_tidy, &tv); } |