From 4e9bc32ac5d09474f0524c73d10df4eae5f0fc67 Mon Sep 17 00:00:00 2001 From: giraffedata Date: Sun, 28 Nov 2021 17:09:08 +0000 Subject: Back out previous commit git-svn-id: http://svn.code.sf.net/p/netpbm/code/stable@4192 9d0c8265-081b-0410-96cb-a4ca84ce46f8 --- converter/other/pnmtopalm/palmtopnm.c | 4 ++-- doc/HISTORY | 6 ------ version.mk | 2 +- 3 files changed, 3 insertions(+), 9 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 ? */ diff --git a/doc/HISTORY b/doc/HISTORY index 431b4b94..5632bbe4 100644 --- a/doc/HISTORY +++ b/doc/HISTORY @@ -4,12 +4,6 @@ Netpbm. CHANGE HISTORY -------------- -21.11.28 BJH Release 10.86 27 - - palmtopnm: Fix bug: fails with PackBits input on platform with - default unsigned char, such as ppc64. Always broken. (Ability - to convert PackBits input was new in Netpbm 10.27 (March 2005). - 21.11.19 BJH Release 10.86.26 pamrubber: Fix bug: random behavior with -quad when you specify diff --git a/version.mk b/version.mk index b68010ef..f863d233 100644 --- a/version.mk +++ b/version.mk @@ -1,3 +1,3 @@ NETPBM_MAJOR_RELEASE = 10 NETPBM_MINOR_RELEASE = 86 -NETPBM_POINT_RELEASE = 27 +NETPBM_POINT_RELEASE = 26 -- cgit 1.4.1