From cdf8a429c5fe8efc176132aed266db2e6746aeee Mon Sep 17 00:00:00 2001 From: lostd Date: Tue, 17 Feb 2015 19:03:51 +0200 Subject: [PATCH] Fix an unsigned conversion error --- noice.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)