summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'media-libs/netpbm/files/netpbm-10.86.24-fix-test-ppc64.patch')
-rw-r--r--media-libs/netpbm/files/netpbm-10.86.24-fix-test-ppc64.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/media-libs/netpbm/files/netpbm-10.86.24-fix-test-ppc64.patch b/media-libs/netpbm/files/netpbm-10.86.24-fix-test-ppc64.patch
deleted file mode 100644
index e1b558d59117..000000000000
--- a/media-libs/netpbm/files/netpbm-10.86.24-fix-test-ppc64.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-char is unsigned by default on ppc64
-
---- a/converter/other/pnmtopalm/palmtopnm.c
-+++ b/converter/other/pnmtopalm/palmtopnm.c
-@@ -823,7 +823,7 @@
- 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 @@
- 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 ? */