Skip to content

Commit

Permalink
Black Mesa: error message fix in launcher
Browse files Browse the repository at this point in the history
  • Loading branch information
darealshinji authored Jan 12, 2018
1 parent bbcd578 commit f353e38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Black Mesa/bms.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ int main(int argc, char **argv)
printf("renaming `%s' to `%s'\n", lib, dest);
if (rename(lib, dest) == -1) {
int errsv = errno;
fprintf(stderr, "error: moving `%s' failed: %s\n", strerror(errsv), dest);
fprintf(stderr, "error: moving `%s' failed: %s\n", lib, strerror(errsv));
//return 1;
}
}
Expand Down

0 comments on commit f353e38

Please sign in to comment.