psxmmap01/test_helper.c: Use correct printf format for size_t

This commit is contained in:
Joel Sherrill
2017-07-27 17:29:24 -05:00
parent 3a3d85c606
commit 3fd019739f

View File

@@ -24,7 +24,7 @@ void fail_check(
{ {
va_list ap; va_list ap;
printf( "%s: %d: ", file, line ); printf( "%s: %zd: ", file, line );
va_start(ap, fmt); va_start(ap, fmt);
vprintf(fmt, ap); vprintf(fmt, ap);