We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f47c81 commit 4ad3eb6Copy full SHA for 4ad3eb6
opkrun.c
@@ -431,8 +431,9 @@ int main(int argc, char **argv)
431
char command[PATH_MAX];
432
strcpy(command, "keymap rom");
433
if (rom_arg >= 0) {
434
- strcat(command, " ");
+ strcat(command, " \"");
435
strncat(command, args[rom_arg], PATH_MAX - 1);
436
+ strncat(command, "\"", PATH_MAX - 1);
437
}
438
printf("Applied keymap rom command: \"%s\"\n", command);
439
system(command);
0 commit comments