about summary refs log tree commit diff
path: root/converter
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2021-11-28 17:09:57 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2021-11-28 17:09:57 +0000
commit69159a2344b68080541b98d448fb1b44d149930c (patch)
treef100ce9b57442d2b57946a93c854fa0b5fbd0463 /converter
parent5de61ec78e4143765cf170b6175068c9ae57c0ea (diff)
downloadnetpbm-mirror-69159a2344b68080541b98d448fb1b44d149930c.tar.gz
netpbm-mirror-69159a2344b68080541b98d448fb1b44d149930c.tar.xz
netpbm-mirror-69159a2344b68080541b98d448fb1b44d149930c.zip
Back out previous commit
git-svn-id: http://svn.code.sf.net/p/netpbm/code/advanced@4193 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter')
-rw-r--r--converter/other/pnmtopalm/palmtopnm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/converter/other/pnmtopalm/palmtopnm.c b/converter/other/pnmtopalm/palmtopnm.c
index 27f44a0a..445f7839 100644
--- a/converter/other/pnmtopalm/palmtopnm.c
+++ b/converter/other/pnmtopalm/palmtopnm.c
@@ -825,7 +825,7 @@ readPackBitsRow16(FILE *          const ifP,
     unsigned int j;
 
     for (j = 0;  j < bytesPerRow; ) {
-        signed char incount;
+        char incount;
         pm_readchar(ifP, &incount);
         if (incount < 0) {
             /* How do we handle incount == -128 ? */
@@ -868,7 +868,7 @@ readPackBitsRow(FILE *          const ifP,
     unsigned int j;
 
     for (j = 0;  j < bytesPerRow; ) {
-        signed char incount;
+        char incount;
         pm_readchar(ifP, &incount);
         if (incount < 0) {
             /* How do we handle incount == -128 ? */