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 09e7688 commit ef0a85f
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 @@ -2703,7 +2703,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 ef0a85f

Please sign in to comment.