summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjoern Franke2023-07-10 13:51:37 +0200
committerBjoern Franke2023-07-10 13:51:37 +0200
commit2f1438c5623d1f6b84e9c34a8cce3458609942da (patch)
treebc0e4e14e87c9595fe624716449b178de9227a21
parent7e83b968e650ef58c99e167e898aa459b129dce4 (diff)
downloadaur-2f1438c5623d1f6b84e9c34a8cce3458609942da.tar.gz
remove patch
-rw-r--r--bug_x86_64.patch90
1 files changed, 0 insertions, 90 deletions
diff --git a/bug_x86_64.patch b/bug_x86_64.patch
deleted file mode 100644
index 14f31df553b8..000000000000
--- a/bug_x86_64.patch
+++ /dev/null
@@ -1,90 +0,0 @@
-diff -Naur epson-inkjet-printer-escpr-1.6.9/src/filter.c epson-inkjet-printer-escpr-1.6.9-fixed/src/filter.c
---- epson-inkjet-printer-escpr-1.6.9/src/filter.c 2016-09-21 03:55:30.000000000 +0200
-+++ epson-inkjet-printer-escpr-1.6.9-fixed/src/filter.c 2016-10-07 22:07:23.965463021 +0200
-@@ -34,6 +34,8 @@
- #include "epson-protocol.h"
- #include "epson-escpr-api.h"
- #include "epson-escpr-mem.h"
-+#include "epson-escpr-services.h"
-+#include "epson-escpage.h"
-
- #include "err.h"
- #include "mem.h"
-@@ -42,6 +44,11 @@
- #include "libprtX.h"
- #include "optBase.h"
- #include "linux_cmn.h"
-+#include "xfifo.h"
-+
-+extern EPS_ERR_CODE SetupJobAttrib (const EPS_JOB_ATTRIB*);
-+extern EPS_ERR_CODE SendStartJob ();
-+extern EPS_ERR_CODE PrintBand (const EPS_UINT8*, EPS_UINT32, EPS_UINT32*);
-
- #define WIDTH_BYTES(bits) (((bits) + 31) / 32 * 4)
-
-@@ -380,10 +387,10 @@
- }else{
- debug_msg("pageStartJob() success");
- }
--
-+
- printJob.jobStatus = EPS_STATUS_ESTABLISHED;
-- int printHeight = 0;
--///////////////////////////////////////////////////////////////////////////////////////////////////////////
-+ EPS_UINT32 printHeight = 0;
-+///////////////////////////////////////////////////////////////////////////////////////////////////////////
-
- print_area_x = printJob.printableAreaWidth;
- print_area_y = printJob.printableAreaHeight;
-@@ -535,7 +542,7 @@
- memcpy(rever_buf + k*3, startpage + pos + (bandBmp.widthBytes - 6) - k*3, 3);
- }
- }
-- PrintBand (rever_buf, bandBmp.widthBytes, &printHeight);
-+ PrintBand ((const EPS_UINT8 *)rever_buf, bandBmp.widthBytes, &printHeight);
- pos -= bandBmp.widthBytes;
- }
-
-@@ -642,17 +649,17 @@
- }
- }
- }
--
-+
- band_line_count ++;
--
-+
- if (band_line_count >= band_line)
- {
- printHeight = band_line_count;
- PrintBand (bandBmp.bits, bandBmp.widthBytes, &printHeight);
- #if (HAVE_PPM)
- fp = fopen(ppmfilename, "a+");
-- int i=0;
-- for(i=0; i<bytes_per_line/byte_par_pixel*3; i++){
-+ int i=0;
-+ for(i=0; i<bytes_per_line/byte_par_pixel*3; i++){
- fprintf(fp, "%u ", (unsigned char)bandBmp.Bits[i]);
- }
- fprintf(fp, "\n");
-@@ -831,7 +838,7 @@
-
- /* Get number of pages */
- char page_num;
-- read (STDIN_FILENO, &page_num, 1);
-+ (void)read (STDIN_FILENO, &page_num, 1);
-
- /* Others */
- jobAttr.apfAutoCorrect = EPS_APF_ACT_STANDARD;
-diff -Naur epson-inkjet-printer-escpr-1.6.9/src/mem.c epson-inkjet-printer-escpr-1.6.9-fixed/src/mem.c
---- epson-inkjet-printer-escpr-1.6.9/src/mem.c 2016-09-21 03:55:30.000000000 +0200
-+++ epson-inkjet-printer-escpr-1.6.9-fixed/src/mem.c 2016-10-07 22:07:59.519366574 +0200
-@@ -24,6 +24,7 @@
-
- #include <stdlib.h>
- #include "mem.h"
-+#include "err.h"
-
- void *
- mem_malloc (unsigned int size, bool_t crit)
-