about summary refs log tree commit diff
path: root/converter/other/pnmtopalm/palmtopnm.c
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2021-11-28 16:55:56 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2021-11-28 16:55:56 +0000
commitb7d89fa573d3716c6f9b20ec5b234103d8bf5271 (patch)
treeb2eab02f240d111256f0b6820934486d27ccf149 /converter/other/pnmtopalm/palmtopnm.c
parent055bdcea05ec69ce144e95cb4275c9c168f5ee50 (diff)
downloadnetpbm-mirror-b7d89fa573d3716c6f9b20ec5b234103d8bf5271.tar.gz
netpbm-mirror-b7d89fa573d3716c6f9b20ec5b234103d8bf5271.tar.xz
netpbm-mirror-b7d89fa573d3716c6f9b20ec5b234103d8bf5271.zip
Version 10.86.27
git-svn-id: http://svn.code.sf.net/p/netpbm/code/stable@4190 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter/other/pnmtopalm/palmtopnm.c')
-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 b3c0321a..89a8b39d 100644
--- a/converter/other/pnmtopalm/palmtopnm.c
+++ b/converter/other/pnmtopalm/palmtopnm.c
@@ -823,7 +823,7 @@ readPackBitsRow16(FILE *          const ifP,
     unsigned int j;
 
     for (j = 0;  j < bytesPerRow; ) {
-        char incount;
+        signed char incount;
         pm_readchar(ifP, &incount);
         if (incount < 0) {
             /* How do we handle incount == -128 ? */
@@ -865,7 +865,7 @@ readPackBitsRow(FILE *          const ifP,
     unsigned int j;
 
     for (j = 0;  j < bytesPerRow; ) {
-        char incount;
+        signed char incount;
         pm_readchar(ifP, &incount);
         if (incount < 0) {
             /* How do we handle incount == -128 ? */