Skip to content

Commit

Permalink
Back out previous commit
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.code.sf.net/p/netpbm/code/advanced@4193 9d0c8265-081b-0410-96cb-a4ca84ce46f8
  • Loading branch information
giraffedata committed Nov 28, 2021
1 parent 564949f commit eccb13a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
4 changes: 2 additions & 2 deletions converter/other/pnmtopalm/palmtopnm.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 ? */
Expand Down Expand Up @@ -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 ? */
Expand Down
6 changes: 0 additions & 6 deletions doc/HISTORY
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,6 @@ Netpbm.
CHANGE HISTORY
--------------

21.11.28 BJH Release 10.96.04

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.07 BJH Release 10.96.03

sunicontopnm, escp2topbm, mgrtopbm, ybmtopbm, pamcut, pbmpscale,
Expand Down
2 changes: 1 addition & 1 deletion version.mk
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
NETPBM_MAJOR_RELEASE = 10
NETPBM_MINOR_RELEASE = 96
NETPBM_POINT_RELEASE = 4
NETPBM_POINT_RELEASE = 3

0 comments on commit eccb13a

Please sign in to comment.