Skip to content

Commit

Permalink
Fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Gerdgren authored Sep 1, 2019
1 parent fa443fc commit 1dd98c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/amigeconv.c
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ int main(int argc, char *argv[]) {
const image_error_t image_error = image_load(&image, infile);
if (image_error) {
error = true;
printf("Error: Could not load input file \"%s\". %s\n\n", infile, image_error_text(error));
printf("Error: Could not load input file \"%s\". %s\n\n", infile, image_error_text(image_error));
goto error;
}

Expand Down

0 comments on commit 1dd98c6

Please sign in to comment.