mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 01:24:38 +00:00
Hans Leidekker <hans@it.vu.nl>
- Fix signed/unsigned comparison warnings. svn path=/trunk/; revision=11345
This commit is contained in:
parent
bf5400ab2a
commit
65e1445718
1 changed files with 2 additions and 2 deletions
|
@ -894,7 +894,7 @@ char buf[rtfBufSiz];
|
|||
int RTFReadCharSetMap(RTF_Info *info, int csId)
|
||||
{
|
||||
int *stdCodeArray;
|
||||
int i;
|
||||
unsigned int i;
|
||||
|
||||
TRACE("\n");
|
||||
|
||||
|
@ -2620,7 +2620,7 @@ int RTFHexToChar(int i)
|
|||
|
||||
int RTFReadOutputMap(RTF_Info *info, char *outMap[], int reinit)
|
||||
{
|
||||
int i;
|
||||
unsigned int i;
|
||||
int stdCode;
|
||||
char *name, *seq;
|
||||
|
||||
|
|
Loading…
Reference in a new issue