Skip to content

Commit

Permalink
mxqd: Remove dead store
Browse files Browse the repository at this point in the history
  • Loading branch information
donald committed May 5, 2022
1 parent 999274b commit 4aeeb3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mxqd.c
Original file line number Diff line number Diff line change
Expand Up @@ -2701,7 +2701,7 @@ int main(int argc, char *argv[])
mx_log_info("-------------------------------------------------------------");
mx_log_info(" Reexecuting %s", argv[0]);
mx_log_info("-------------------------------------------------------------");
res = execvp(argv[0], argv);
execvp(argv[0], argv);
mx_log_fatal("execvp(\"%s\", ...): %m", argv[0]);
}

Expand Down

0 comments on commit 4aeeb3e

Please sign in to comment.