Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mm2/Little-CMS.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarti Maria <info@littlecms.com>2017-05-03 00:20:10 +0300
committerMarti Maria <info@littlecms.com>2017-05-03 00:20:10 +0300
commit5b313c45da83dc55933d3d132e0ebe21b05083dc (patch)
tree5b4bd21ddb04e7d7773e8d615d60a18970eb2d0b /utils/tificc
parentf9d75ccef0b54c9f4167d95088d4727985133c52 (diff)
Fixed reversed logic test & a typo on the && operator
Diffstat (limited to 'utils/tificc')
-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);