aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar lostd <lostd@2f30.org>2015-02-17 19:03:51 +0200
committerGravatar lostd <lostd@2f30.org>2015-02-17 19:03:51 +0200
commitcdf8a429c5fe8efc176132aed266db2e6746aeee (patch)
tree79e4a181cf9e59d3a3971a0f1504a3b1067424b6
parentcc65e4098fbf2b99409b37cc4c8d42e794781937 (diff)
downloadnnn-cdf8a429c5fe8efc176132aed266db2e6746aeee.tar.gz
Fix an unsigned conversion error
-rw-r--r--noice.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/noice.c b/noice.c
index 0a81137..31c0771 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)