commit | 06350eaf9d986f90f6263d9910339c0e6222b527 | [log] [tgz] |
---|---|---|
author | Laurence Lundblade <laurencelundblade@users.noreply.github.com> | Mon Jan 27 19:32:40 2020 -0800 |
committer | GitHub <noreply@github.com> | Mon Jan 27 19:32:40 2020 -0800 |
tree | df33d71193b3a40d5ac2a1a29e2353c7062b234d | |
parent | c5fef6875a8b85946593274df723f1c8cf9431be [diff] [blame] |
Refine integer signedness use for static analyizers (#24)
diff --git a/test/run_tests.c b/test/run_tests.c index 133103f..f8ed83b 100644 --- a/test/run_tests.c +++ b/test/run_tests.c
@@ -288,7 +288,7 @@ (*pfOutput)(szWhat, pOutCtx, 0); (*pfOutput)(" ", pOutCtx, 0); - (*pfOutput)(NumToString(uSize, buffer), pOutCtx, 0); + (*pfOutput)(NumToString((int32_t)uSize, buffer), pOutCtx, 0); (*pfOutput)("", pOutCtx, 1); }