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>2010-07-10 19:26:00 +0400
committerMarti Maria <info@littlecms.com>2010-07-10 19:26:00 +0400
commitde6ca05b7c24d2f879f8b8af739eb74cda23b542 (patch)
tree7006c54c2fc99f02315604a9394bdbefb4c997af /utils/common/vprf.c
parentf6c1e29a1a50de3033f7e757d41f7b3c6a90b8d0 (diff)
A better solution for cmsChangeBuffersFormat
Diffstat (limited to 'utils/common/vprf.c')
-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;
}
}