From c6ff878411bdf5b00c8fe3dc39413374c2bad565 Mon Sep 17 00:00:00 2001 From: Paul LeoNerd Evans Date: Mon, 24 Nov 2008 22:06:14 +0000 Subject: [PATCH] Fixed another signed-vs-unsigned int comparison in driver-ti.c --- driver-ti.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/driver-ti.c b/driver-ti.c index fd07c36..f73d970 100644 --- a/driver-ti.c +++ b/driver-ti.c @@ -237,7 +237,7 @@ static termkey_result getkey(termkey_t *tk, void *info, termkey_key *key, int fo struct trie_node *p = ti->root; - int pos = 0; + unsigned int pos = 0; while(pos < tk->buffcount) { p = lookup_next(p, CHARAT(pos)); if(!p)