]> Sergey Matveev's repositories - nnn.git/commitdiff
Fix an unsigned conversion error
authorlostd <lostd@2f30.org>
Tue, 17 Feb 2015 17:03:51 +0000 (19:03 +0200)
committerlostd <lostd@2f30.org>
Tue, 17 Feb 2015 17:03:51 +0000 (19:03 +0200)
noice.c

diff --git a/noice.c b/noice.c
index 0a81137869e03b32489aab96c3964fba2a54532e..31c0771e7c44b0572c1c43417490d67ba080ed34 100644 (file)
--- 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)