]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
poolTests.c: Fix Interval Var Type
authorW. Felix Handte <w@felixhandte.com>
Wed, 27 Jun 2018 23:15:38 +0000 (19:15 -0400)
committerW. Felix Handte <w@felixhandte.com>
Wed, 27 Jun 2018 23:15:38 +0000 (19:15 -0400)
tests/poolTests.c

index 6a058a5a3626d20c27432cb5dad2a55a92b16355..9661b5299e5230e62871c9a6c2938d21b849a355 100644 (file)
@@ -105,7 +105,8 @@ void waitLongFn(void *opaque) {
 static int testThreadReduction_internal(POOL_ctx* ctx, poolTest_t test)
 {
     int const nbWaits = 16;
-    UTIL_time_t startTime, time4threads, time2threads;
+    UTIL_time_t startTime;
+    U64 time4threads, time2threads;
 
     test.val = 0;
     test.max = nbWaits;