mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
[utils] Fix set tests for 32-bit machines
This commit is contained in:
parent
72a1fef714
commit
4f51a3b406
1 changed files with 4 additions and 1 deletions
|
@ -237,7 +237,10 @@ main (int argc, const char **argv)
|
|||
|
||||
tests[5].str_expect = nva ("{%zd}", SIZE);
|
||||
tests[7].str_expect = nva ("{%zd ...}", SIZE);
|
||||
tests[8].str_expect = nva ("{%zd ...}", SIZE);
|
||||
tests[8].str_expect = tests[7].str_expect;
|
||||
tests[9].str_expect = tests[5].str_expect;
|
||||
tests[10].str_expect = tests[5].str_expect;
|
||||
tests[11].str_expect = tests[5].str_expect;
|
||||
|
||||
str = dstring_new ();
|
||||
for (i = 0; i < SIZE; i++) {
|
||||
|
|
Loading…
Reference in a new issue