diff options
| author | 2018-12-08 15:50:17 +0530 | |
|---|---|---|
| committer | 2018-12-08 15:50:17 +0530 | |
| commit | a5755ec85540ae400c67634f658d71bb103c0484 (patch) | |
| tree | 720e796fc54b28b70c75d4cdde68291ffe50ad67 | |
| parent | d8fa9356e0d882d9f338b2005cf12912b177a99b (diff) | |
| download | nnn-a5755ec85540ae400c67634f658d71bb103c0484.tar.gz | |
Fix build break
| -rw-r--r-- | src/nnn.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3578,9 +3578,9 @@ int main(int argc, char *argv[]) if (*copier < '0' || *copier > '7') { fprintf(stderr, "invalid color code\n"); return 1; - } else - g_ctx[opt].color = *copier - '0'; + } + g_ctx[opt].color = *copier - '0'; ++copier; ++opt; } |