summaryrefslogtreecommitdiff
path: root/toolbin
diff options
context:
space:
mode:
authorMichael Vrhel <michael.vrhel@artifex.com>2020-06-02 11:59:44 -0700
committerMichael Vrhel <michael.vrhel@artifex.com>2020-06-02 11:59:44 -0700
commitb9916ac2feec23b6c91e4c5d425dde0a73b1462d (patch)
treeee620c30c6a584c99702c403dbdc06b78df4a873 /toolbin
parente3bbb3b93bcdade889b36641508f25929968089e (diff)
downloadghostpdl-b9916ac2feec23b6c91e4c5d425dde0a73b1462d.tar.gz
Add missing line feeds on error messages in bmpcmp
Diffstat (limited to 'toolbin')
-rw-r--r--toolbin/bmpcmp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/toolbin/bmpcmp.c b/toolbin/bmpcmp.c
index 912dc3ba4..239f3a967 100644
--- a/toolbin/bmpcmp.c
+++ b/toolbin/bmpcmp.c
@@ -3694,7 +3694,7 @@ int main(int argc, char *argv[])
if (params.window <= 1 && params.threshold == 0) {
diffFn = simple_diff;
if (params.lab) {
- fprintf(stderr, "bmpcmp: LAB comparison requires window > 1 and threshold > 0");
+ fprintf(stderr, "bmpcmp: LAB comparison requires window > 1 and threshold > 0\n");
}
} else {
diffFn = fuzzy_diff;
@@ -3702,7 +3702,7 @@ int main(int argc, char *argv[])
#ifndef COLOR_MANAGED
if (params.lab) {
- fprintf(stderr, "bmpcmp: LAB comparison selected but bmp compiled without cmm!");
+ fprintf(stderr, "bmpcmp: LAB comparison selected but bmp compiled without cmm!\n");
}
#endif
@@ -3727,7 +3727,7 @@ int main(int argc, char *argv[])
}
if (params.lab && (lab1 == NULL || lab2 == NULL)) {
- fprintf(stderr, "bmpcmp: Lab compare failed (only valid for tiffs with icc profiles)");
+ fprintf(stderr, "bmpcmp: Lab compare failed (only valid for tiffs with icc profiles)\n");
continue;
}