mirror of
https://github.com/labwc/labwc.git
synced 2025-10-29 05:40:24 -04:00
find-idents.c: fix typo
...which so far has caused any bugs!
This commit is contained in:
parent
c4b9173afd
commit
be1ef03412
1 changed files with 1 additions and 1 deletions
|
|
@ -274,7 +274,7 @@ get_special_token(struct token *token)
|
|||
/* Compare with longest special tokens first */
|
||||
int k;
|
||||
for (k = strlen(buf); k > 0; k--) {
|
||||
for (int j = 0; sizeof(specials) / sizeof(specials[0]); j++) {
|
||||
for (size_t j = 0; j < sizeof(specials) / sizeof(specials[0]); j++) {
|
||||
if (strlen(specials[j].combo) < k) {
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue