Fixed another signed-vs-unsigned int comparison in driver-ti.c
This commit is contained in:
parent
85be2846c3
commit
c6ff878411
|
@ -237,7 +237,7 @@ static termkey_result getkey(termkey_t *tk, void *info, termkey_key *key, int fo
|
||||||
|
|
||||||
struct trie_node *p = ti->root;
|
struct trie_node *p = ti->root;
|
||||||
|
|
||||||
int pos = 0;
|
unsigned int pos = 0;
|
||||||
while(pos < tk->buffcount) {
|
while(pos < tk->buffcount) {
|
||||||
p = lookup_next(p, CHARAT(pos));
|
p = lookup_next(p, CHARAT(pos));
|
||||||
if(!p)
|
if(!p)
|
||||||
|
|
Loading…
Reference in New Issue