Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
spawn: fix thinko in spawn_parse_args()
  • Loading branch information
perexg committed Dec 6, 2014
1 parent 75e4e78 commit b659bce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/spawn.c
Expand Up @@ -365,7 +365,7 @@ spawn_parse_args(char ***argv, int argc, const char *cmd, const char **replace)
strcpy(a, f);
strcat(a, r[1]);
strcat(a, p + l);
*argv[i++] = f;
*argv[i++] = a;
break;
}
}
Expand Down

0 comments on commit b659bce

Please sign in to comment.