summaryrefslogtreecommitdiff
path: root/gs/toolbin/bmpcmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'gs/toolbin/bmpcmp.c')
-rw-r--r--gs/toolbin/bmpcmp.c4
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);
}