diff options
author | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2021-11-28 17:09:08 +0000 |
---|---|---|
committer | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2021-11-28 17:09:08 +0000 |
commit | 4e9bc32ac5d09474f0524c73d10df4eae5f0fc67 (patch) | |
tree | caa9b40699f635c6927cd2263bc10f7f1dacf143 /converter/other/pnmtopalm/palmtopnm.c | |
parent | b7d89fa573d3716c6f9b20ec5b234103d8bf5271 (diff) | |
download | netpbm-mirror-4e9bc32ac5d09474f0524c73d10df4eae5f0fc67.tar.gz netpbm-mirror-4e9bc32ac5d09474f0524c73d10df4eae5f0fc67.tar.xz netpbm-mirror-4e9bc32ac5d09474f0524c73d10df4eae5f0fc67.zip |
Back out previous commit
git-svn-id: http://svn.code.sf.net/p/netpbm/code/stable@4192 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter/other/pnmtopalm/palmtopnm.c')
-rw-r--r-- | converter/other/pnmtopalm/palmtopnm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/converter/other/pnmtopalm/palmtopnm.c b/converter/other/pnmtopalm/palmtopnm.c index 89a8b39d..b3c0321a 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; ) { - signed char incount; + 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; ) { - signed char incount; + char incount; pm_readchar(ifP, &incount); if (incount < 0) { /* How do we handle incount == -128 ? */ |