From cc1c8cdc5f7763d5d27db0f6c36c499740fe7468 Mon Sep 17 00:00:00 2001 From: Zdenek Dohnal Date: Thu, 16 Feb 2023 15:48:32 +0100 Subject: [PATCH] Re: Fix issue 6. Use default branch instead of specific one --- filter/rastertoescpx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/filter/rastertoescpx.c b/filter/rastertoescpx.c index c28eba041..f060db0b3 100644 --- a/filter/rastertoescpx.c +++ b/filter/rastertoescpx.c @@ -335,8 +335,8 @@ StartPage(ppd_file_t *ppd, // I - PPD file DitherLuts[6] = ppdLutLoad(ppd, colormodel, header->MediaType, resolution, "LightBlack", logfunc, ld); break; - case 0 : // ERROR - fputs("ERROR: Unable to allocate band list\n", stderr); + default : // ERROR + fputs("ERROR: Unexpected number of channels\n", stderr); exit(1); } -- 2.47.2