summaryrefslogtreecommitdiff
path: root/auto_tests/tox_many_test.c
diff options
context:
space:
mode:
authorLeonid Bobrov <mazocomp@disroot.org>2018-08-16 10:09:12 +0300
committeriphydf <iphydf@users.noreply.github.com>2018-08-16 09:57:37 +0000
commit006b4f4e5c3579428ff02ab954bf78a913df9e5a (patch)
treec68c3aec191b115fe73c8df7399468ae0edec222 /auto_tests/tox_many_test.c
parent3036cc1f23cef20885db3652972c102e7405d178 (diff)
Prune long long warnings.
Diffstat (limited to 'auto_tests/tox_many_test.c')
-rw-r--r--auto_tests/tox_many_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/auto_tests/tox_many_test.c b/auto_tests/tox_many_test.c
index 49933234..62c7c621 100644
--- a/auto_tests/tox_many_test.c
+++ b/auto_tests/tox_many_test.c
@@ -123,7 +123,7 @@ loop_top:
123 tox_kill(toxes[i]); 123 tox_kill(toxes[i]);
124 } 124 }
125 125
126 printf("test_many_clients succeeded, took %ld seconds\n", time(nullptr) - cur_time); 126 printf("test_many_clients succeeded, took %lu seconds\n", (unsigned long)(time(nullptr) - cur_time));
127} 127}
128 128
129int main(void) 129int main(void)