From 6f26dd2f99a0fcf089e686db2d944bcbed298cfe Mon Sep 17 00:00:00 2001 From: Doug Torrance Date: Wed, 27 May 2015 17:33:15 -0500 Subject: [PATCH] wmifs: Fix "comparison between signed and unsigned integer expressions" compiler warning. --- wmifs/wmifs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wmifs/wmifs.c b/wmifs/wmifs.c index c124cc3..9c56f63 100644 --- a/wmifs/wmifs.c +++ b/wmifs/wmifs.c @@ -584,10 +584,10 @@ void DrawActiveIFS(char *real_name) Destinatie: 5,5 */ - int i; + size_t i; int c; int k; - int len; + size_t len; char name[256];