diff options
author | Robin Watts <robin.watts@artifex.com> | 2012-05-07 17:47:33 +0100 |
---|---|---|
committer | Robin Watts <robin.watts@artifex.com> | 2012-05-07 17:49:21 +0100 |
commit | 949993da66cd9850ce47c7319465aed42585b261 (patch) | |
tree | cd9665666c72b60a70caf58eff5f2173c64dc75d | |
parent | fee1ab3e7e38c3e2bd82a855d7bdec2c18751320 (diff) |
Tweak bmpcmp error message
-rw-r--r-- | gs/toolbin/bmpcmp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gs/toolbin/bmpcmp.c b/gs/toolbin/bmpcmp.c index d37fa42e7..0d5686050 100644 --- a/gs/toolbin/bmpcmp.c +++ b/gs/toolbin/bmpcmp.c @@ -3064,13 +3064,13 @@ done: /* If one loaded, and the other didn't - that's an error */ if ((bmp2 != NULL) && (bmp == NULL)) { - fprintf(stderr, "bmpcmp: Failed to load image %d from '%s'\n", + fprintf(stderr, "bmpcmp: Failed to load (candidate) image %d from '%s'\n", imagecount+1, params.filename1); exit(EXIT_FAILURE); } if ((bmp != NULL) && (bmp2 == NULL)) { - fprintf(stderr, "bmpcmp: Failed to load image %d from '%s'\n", + fprintf(stderr, "bmpcmp: Failed to load (reference) image %d from '%s'\n", imagecount+1, params.filename2); exit(EXIT_FAILURE); } |