mirror of
https://github.com/labwc/labwc.git
synced 2025-10-31 22:25:34 -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 */
|
/* Compare with longest special tokens first */
|
||||||
int k;
|
int k;
|
||||||
for (k = strlen(buf); k > 0; 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) {
|
if (strlen(specials[j].combo) < k) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue