summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorMarti Maria <info@littlecms.com>2010-07-10 17:26:00 +0200
committerMarti Maria <info@littlecms.com>2010-07-10 17:26:00 +0200
commitde6ca05b7c24d2f879f8b8af739eb74cda23b542 (patch)
tree7006c54c2fc99f02315604a9394bdbefb4c997af /utils
parentf6c1e29a1a50de3033f7e757d41f7b3c6a90b8d0 (diff)
downloadlcms2-de6ca05b7c24d2f879f8b8af739eb74cda23b542.tar.gz
A better solution for cmsChangeBuffersFormat
Diffstat (limited to 'utils')
-rw-r--r--utils/common/vprf.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/common/vprf.c b/utils/common/vprf.c
index bf89230..7c0ed35 100644
--- a/utils/common/vprf.c
+++ b/utils/common/vprf.c
@@ -282,6 +282,7 @@ int PixelTypeFromChanCount(int ColorChannels)
default:
FatalError("What a weird separation of %d channels?!?!", ColorChannels);
+ return -1;
}
}
@@ -317,6 +318,7 @@ int ChanCountFromPixelType(int ColorChannels)
default:
FatalError("Unsupported color space of %d channels", ColorChannels);
+ return -1;
}
}