=================================================================== RCS file: /cvs/djgpp/djgpp/tests/libc/posix/unistd/append.c,v retrieving revision 1.3 retrieving revision 1.4 diff -p -u -r1.3 -r1.4 --- djgpp/tests/libc/posix/unistd/append.c 2002/06/08 11:04:42 1.3 +++ /cvs/djgpp/djgpp/tests/libc/posix/unistd/append.c 2013/10/28 09:22:13 1.4 @@ -44,7 +44,7 @@ main (int argc, char *argv[]) die(argv[0], __LINE__); close( fd ); stat( FILE_NAME, &s ); - if (s.st_size != len * 2) + if (s.st_size != (int)len * 2) { printf("wrong size 1!\n"); status++; @@ -64,7 +64,7 @@ main (int argc, char *argv[]) die(argv[0], __LINE__); close( fd ); stat( FILE_NAME, &s ); - if( s.st_size != len * 3 ) + if( s.st_size != (int)len * 3 ) { printf("wrong size 2!\n"); status++;