test: Mark a literal integer as long long

This fixes build failures on 32-bit architectures.
This commit is contained in:
Guillem Jover
2013-05-27 06:49:57 +02:00
parent 9587882316
commit df5aebd7e1

View File

@@ -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;
}