From f297798397f570edd4e2a7933edaebe19489129c Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Fri, 28 May 2004 19:18:17 +0000 Subject: Made a variable (t2) size_t so that it matched the size of the other variable it gets compared with (fw). --- Src/loop.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Src') 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) -- cgit 1.4.1