mirror of
https://github.com/jarun/nnn.git
synced 2024-11-28 13:51:31 +00:00
Fix build break
This commit is contained in:
parent
d8fa9356e0
commit
a5755ec855
|
@ -3578,9 +3578,9 @@ int main(int argc, char *argv[])
|
||||||
if (*copier < '0' || *copier > '7') {
|
if (*copier < '0' || *copier > '7') {
|
||||||
fprintf(stderr, "invalid color code\n");
|
fprintf(stderr, "invalid color code\n");
|
||||||
return 1;
|
return 1;
|
||||||
} else
|
}
|
||||||
g_ctx[opt].color = *copier - '0';
|
|
||||||
|
|
||||||
|
g_ctx[opt].color = *copier - '0';
|
||||||
++copier;
|
++copier;
|
||||||
++opt;
|
++opt;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue