summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorMarti Maria <info@littlecms.com>2017-05-02 23:20:10 +0200
committerMarti Maria <info@littlecms.com>2017-05-02 23:20:10 +0200
commit5b313c45da83dc55933d3d132e0ebe21b05083dc (patch)
tree5b4bd21ddb04e7d7773e8d615d60a18970eb2d0b /utils
parentf9d75ccef0b54c9f4167d95088d4727985133c52 (diff)
downloadlcms2-5b313c45da83dc55933d3d132e0ebe21b05083dc.tar.gz
Fixed reversed logic test & a typo on the && operator
Diffstat (limited to 'utils')
-rw-r--r--utils/tificc/tificc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/tificc/tificc.c b/utils/tificc/tificc.c
index 8e6fbc0..2641caf 100644
--- a/utils/tificc/tificc.c
+++ b/utils/tificc/tificc.c
@@ -708,7 +708,7 @@ cmsHPROFILE GetTIFFProfile(TIFF* in)
hProfile = cmsOpenProfileFromMem(EmbedBuffer, EmbedLen);
// Print description found in the profile
- if (Verbose & hProfile != NULL) {
+ if (Verbose && (hProfile != NULL)) {
fprintf(stdout, "\n[Embedded profile]\n");
PrintProfileInformation(hProfile);