Remove two unused arguments from status_replace.

This commit is contained in:
nicm
2015-02-01 23:43:23 +00:00
parent 4e03239d1f
commit c9642ee213
4 changed files with 27 additions and 28 deletions

View File

@ -109,8 +109,7 @@ cmd_pipe_pane_exec(struct cmd *self, struct cmd_q *cmdq)
closefrom(STDERR_FILENO + 1);
command = status_replace(
c, NULL, NULL, NULL, args->argv[0], time(NULL), 0);
command = status_replace(c, NULL, args->argv[0], time(NULL), 0);
execl(_PATH_BSHELL, "sh", "-c", command, (char *) NULL);
_exit(1);
default: