wmifs: Fix "comparison between signed and unsigned integer expressions" compiler warning.

This commit is contained in:
Doug Torrance 2015-05-27 17:33:15 -05:00 committed by Carlos R. Mafra
parent 621457313e
commit 6f26dd2f99

View file

@ -584,10 +584,10 @@ void DrawActiveIFS(char *real_name)
Destinatie: 5,5 Destinatie: 5,5
*/ */
int i; size_t i;
int c; int c;
int k; int k;
int len; size_t len;
char name[256]; char name[256];