2010-06-30 Joel Sherrill <joel.sherrill@oarcorp.com>

PR 1595/tests
	* psximfs01/init.c: Fix warnings.
This commit is contained in:
Joel Sherrill
2010-06-30 13:54:15 +00:00
parent 2d108f88e2
commit 71a5e5a113
2 changed files with 7 additions and 2 deletions
+5
View File
@@ -1,3 +1,8 @@
2010-06-30 Joel Sherrill <joel.sherrill@oarcorp.com>
PR 1595/tests
* psximfs01/init.c: Fix warnings.
2010-06-28 Joel Sherrill <joel.sherrill@oarcorp.com>
* psxtime/psxtime.scn, psxtime/test.c: Add test for passing a null
+2 -2
View File
@@ -52,7 +52,7 @@ void write_helper(void)
written = write( TestFd, Buffer, sizeof(Buffer) );
if ( written == -1 ) {
if ( errno == ENOSPC ) {
printf( "Total written = %d\n", TotalWritten );
printf( "Total written = %zd\n", TotalWritten );
return;
}
fprintf(
@@ -97,7 +97,7 @@ void read_helper(void)
}
fprintf(
stderr,
"ERROR - at offset %d - returned %d and error=%s\n",
"ERROR - at offset %zd - returned %zd and error=%s\n",
i,
sc,
strerror( errno )