wmmenu: Fix -Wsign-compare compiler warning.

Use size_t instead of int since comparing with sizeof.
This commit is contained in:
Doug Torrance 2015-01-24 12:05:43 -06:00 committed by Carlos R. Mafra
parent 28ea752c44
commit 2167b4c354

View file

@ -16,7 +16,7 @@
static char * ReadAll (FILE * f, int offset)
{
char buf [10*1024] ;
int iRead, nRead ;
size_t iRead, nRead ;
char * ret ;
clearerr (f) ;