diff options
| author | 2020-01-08 19:40:56 +0530 | |
|---|---|---|
| committer | 2020-01-08 19:40:56 +0530 | |
| commit | 604a8fafcc4642efe6aaf5a2d968b533f447fea7 (patch) | |
| tree | ae0165e92540982c85956189744ea4f9b2d26657 /src | |
| parent | d209e8f278e434b707ea861ec3988c4b491ee7b2 (diff) | |
| download | nnn-604a8fafcc4642efe6aaf5a2d968b533f447fea7.tar.gz | |
Fix build break
Diffstat (limited to 'src')
| -rw-r--r-- | src/nnn.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1964,7 +1964,7 @@ static int nextsel(int presel) } else idle = 0; - for (i = 0; i < ELEMENTS(bindings); ++i) + for (i = 0; i < (int)ELEMENTS(bindings); ++i) if (c == bindings[i].sym) return bindings[i].act; |