summaryrefslogtreecommitdiff
path: root/Build/source/utils/m-tx/TLpatches/patch-01-write-bin
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/utils/m-tx/TLpatches/patch-01-write-bin')
-rw-r--r--Build/source/utils/m-tx/TLpatches/patch-01-write-bin27
1 files changed, 0 insertions, 27 deletions
diff --git a/Build/source/utils/m-tx/TLpatches/patch-01-write-bin b/Build/source/utils/m-tx/TLpatches/patch-01-write-bin
deleted file mode 100644
index 222e43ba63e..00000000000
--- a/Build/source/utils/m-tx/TLpatches/patch-01-write-bin
+++ /dev/null
@@ -1,27 +0,0 @@
-diff -ur mtx-0.63a/files.c mtx-src/files.c
---- mtx-0.63a/files.c Tue Jan 09 01:39:42 2018
-+++ mtx-src/files.c Wed Apr 25 18:07:12 2018
-@@ -289,9 +289,9 @@
- pushFile(infilename);
- strcpy(outfile_NAME, outfilename);
- if (outfile != NULL)
-- outfile = freopen(outfile_NAME, "w", outfile);
-+ outfile = freopen(outfile_NAME, "wb", outfile);
- else
-- outfile = fopen(outfile_NAME, "w");
-+ outfile = fopen(outfile_NAME, "wb");
- _SETIO(outfile != NULL, FileNotFound);
- strcpy(stylefile_NAME, stylefilename);
- if (stylefile != NULL)
-diff -ur mtx-0.63a/globals.c mtx-src/globals.c
---- mtx-0.63a/globals.c Tue Jan 09 01:39:42 2018
-+++ mtx-src/globals.c Wed Apr 25 18:07:37 2018
-@@ -230,7 +230,7 @@
- if (outfile != NULL)
- fclose(outfile);
- outfile = NULL;
-- outfile = fopen(outfile_NAME, "w");
-+ outfile = fopen(outfile_NAME, "wb");
- if (outfile == NULL)
- _EscIO2(FileNotFound, outfile_NAME);
- fclose(outfile);