test: Mark a literal integer as long long This fixes build failures on 32-bit architectures.
diff --git a/test/humanize.c b/test/humanize.c
index caa8fec..0e8f0cf 100644
--- a/test/humanize.c
+++ b/test/humanize.c
@@ -58,7 +58,7 @@ main(int argc, char **argv)
assert(val == 20971520);
assert(dehumanize_number("-3G", &val) == 0);
- assert(val == -3221225472);
+ assert(val == -3221225472LL);
return 0;
}