diff options
-rw-r--r-- | Src/loop.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Src/loop.c b/Src/loop.c index 5b09a76df..ecb9821ad 100644 --- a/Src/loop.c +++ b/Src/loop.c @@ -338,7 +338,8 @@ selectlist(LinkList l, size_t start) for (t1 = start; t1 != colsz && t1 - start < lines - 2; t1++) { ap = arr + t1; do { - int t2 = strlen(*ap) + 2, t3; + size_t t2 = strlen(*ap) + 2; + int t3; fprintf(stderr, "%d) %s", t3 = ap - arr + 1, *ap); while (t3) |