mirror of
https://github.com/jarun/nnn.git
synced 2025-03-20 05:19:43 +00:00
Fix build break
This commit is contained in:
parent
d8fa9356e0
commit
a5755ec855
1 changed files with 2 additions and 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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue