about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--converter/other/pamtogif.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/converter/other/pamtogif.c b/converter/other/pamtogif.c
index 41c50178..68a445c6 100644
--- a/converter/other/pamtogif.c
+++ b/converter/other/pamtogif.c
@@ -1754,10 +1754,8 @@ computeColormapBw(struct pam *   const pamP,
     tupletable const colormap = pnm_alloctupletable(pamP, 2);
     
     *mapPamP = *pamP;
+    mapPamP->depth = 1;
 
-    assert(mapPamP->depth  == 1);
-    assert(mapPamP->maxval == 1);
-      
     colormap[0]->value = 1;
     colormap[0]->tuple[0] = PAM_BLACK;
     colormap[1]->value = 1;
@@ -1839,7 +1837,7 @@ computeLibnetpbmColormap(struct pam *   const pamP,
         readAndValidateColormapFromFile(mapfile, maxcolors, &tuplefreq,
                                         mapPamP, &colorCount,
                                         nInputComp, pamP->maxval);
-    else if (pamP->depth == 1 && pamP->maxval == 1 && !sort &&
+    else if (nInputComp == 1 && pamP->maxval == 1 && !sort &&
              pamP->height * pamP->width > 1)
         computeColormapBw(pamP, mapPamP, &colorCount, &tuplefreq);
     else