From 507fe8daac1361fe28e62aab07624b1d86bb14ed Mon Sep 17 00:00:00 2001 From: giraffedata Date: Mon, 1 Apr 2024 16:38:49 +0000 Subject: cleanup git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@4900 9d0c8265-081b-0410-96cb-a4ca84ce46f8 --- converter/ppm/ppmtoxpm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/converter/ppm/ppmtoxpm.c b/converter/ppm/ppmtoxpm.c index 4a3336b0..880edf39 100644 --- a/converter/ppm/ppmtoxpm.c +++ b/converter/ppm/ppmtoxpm.c @@ -535,7 +535,7 @@ computecolorhash(pixel ** const pixels, ++ncolors; } } else - *transparentSomewhereP = TRUE; + *transparentSomewhereP = true; } } *chtP = cht; @@ -638,9 +638,9 @@ main(int argc, const char * *argv) { if (cmdline.hexonly) colornameHash = NULL; else if (cmdline.rgb) - ppm_readcolornamefile(cmdline.rgb, TRUE, &colornameHash, &colornames); + ppm_readcolornamefile(cmdline.rgb, true, &colornameHash, &colornames); else - ppm_readcolornamefile(NULL, FALSE, &colornameHash, &colornames); + ppm_readcolornamefile(NULL, false, &colornameHash, &colornames); /* Now generate the character-pixel colormap table. */ genCmap(chv, ncolors, maxval, -- cgit 1.4.1