Browse Source

Fix build break

master
Arun Prakash Jana 5 years ago
parent
commit
a5755ec855
No known key found for this signature in database GPG Key ID: A75979F35C080412
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/nnn.c

+ 2
- 2
src/nnn.c View File

@@ -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…
Cancel
Save