mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 04:39:45 +00:00
msvcrt/tests: Fix a signed/unsigned int mismatch.
This commit is contained in:
parent
dbf7b7b398
commit
a50dfc174e
@ -144,7 +144,8 @@ static void test_readmode( BOOL ascii_mode )
|
||||
int fd;
|
||||
FILE *file;
|
||||
const int *ip;
|
||||
int i, j, m, fp, ao, pl;
|
||||
int i, j, m, ao, pl;
|
||||
unsigned int fp;
|
||||
long l;
|
||||
|
||||
fd = open ("fdopen.tst", O_WRONLY | O_CREAT | O_BINARY, _S_IREAD |_S_IWRITE);
|
||||
@ -307,7 +308,8 @@ static void test_fgetwc( void )
|
||||
WCHAR wtextW[BUFSIZ+LLEN+1];
|
||||
WCHAR *mytextW = NULL, *aptr, *wptr;
|
||||
BOOL diff_found = FALSE;
|
||||
int i, j;
|
||||
int j;
|
||||
unsigned int i;
|
||||
long l;
|
||||
|
||||
tempf=_tempnam(".","wne");
|
||||
|
Loading…
Reference in New Issue
Block a user