Fixed another signed-vs-unsigned int comparison in driver-ti.c

This commit is contained in:
Paul LeoNerd Evans 2008-11-24 22:06:14 +00:00
parent 85be2846c3
commit c6ff878411
1 changed files with 1 additions and 1 deletions

View File

@ -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)