mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 01:11:45 +00:00
Fix a 32/64 bit portability issue.
This commit is contained in:
parent
999912e49a
commit
bfd1680c15
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ main (int argc, const char **argv)
|
|||
fprintf (stderr, "FAIL: (%zd) \"%s\" -> %d (%s), got %d (%s)\n", i,
|
||||
ext_tests[i].path, ext_tests[i].expect_offset,
|
||||
ext_tests[i].path + ext_tests[i].expect_offset,
|
||||
ext - ext_tests[i].path, ext);
|
||||
(int) (ext - ext_tests[i].path), ext);
|
||||
res = 1;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue