Skip to content

Commit

Permalink
Merge pull request tyilo#2 from stanley1108/master
Browse files Browse the repository at this point in the history
Fix wrong fopen assert message.
  • Loading branch information
tyilo authored Aug 28, 2016
2 parents c2cd9b7 + 3c2593b commit c8beef6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion insert_dylib/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ int main(int argc, const char *argv[]) {
FILE *f = fopen(binary_path, "r+");

if(!f) {
printf("Couldn't open file %s\n", argv[1]);
printf("Couldn't open file %s\n", binary_path);
exit(1);
}

Expand Down

0 comments on commit c8beef6

Please sign in to comment.