From 5ce7c26b5606da17e66207f09cc6e961ec3a33b6 Mon Sep 17 00:00:00 2001 From: cristy Date: Wed, 18 Mar 2015 18:59:25 +0000 Subject: [PATCH] --- coders/tiff.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/coders/tiff.c b/coders/tiff.c index a8e4865e8..43ea0a87d 100644 --- a/coders/tiff.c +++ b/coders/tiff.c @@ -1130,18 +1130,18 @@ RestoreMSCWarning } case PHOTOMETRIC_LOGL: { - (void) SetImageProperty(image,"tiff:photometric","CIE Log2(L)"); + (void) SetImageProperty(image,"tiff:photometric","CIE Log2(L)",exception); break; } case PHOTOMETRIC_LOGLUV: { - (void) SetImageProperty(image,"tiff:photometric","LOGLUV"); + (void) SetImageProperty(image,"tiff:photometric","LOGLUV",exception); break; } #if defined(PHOTOMETRIC_MASK) case PHOTOMETRIC_MASK: { - (void) SetImageProperty(image,"tiff:photometric","MASK"); + (void) SetImageProperty(image,"tiff:photometric","MASK",exception); break; } #endif -- 2.40.0