From: lostd Date: Tue, 17 Feb 2015 17:03:51 +0000 (+0200) Subject: Fix an unsigned conversion error X-Git-Tag: v1.0~92^2~73 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=cdf8a429c5fe8efc176132aed266db2e6746aeee;p=nnn.git Fix an unsigned conversion error --- diff --git a/noice.c b/noice.c index 0a811378..31c0771e 100644 --- a/noice.c +++ b/noice.c @@ -369,7 +369,7 @@ int readmore(char **str) { int c, ret = 0; - size_t i; + int i; char *ln = *str; if (ln != NULL)