aboutsummaryrefslogtreecommitdiff
path: root/x11-fonts/pcf2bdf
diff options
context:
space:
mode:
authorTobias Kortkamp <tobik@FreeBSD.org>2019-06-25 10:08:50 +0000
committerTobias Kortkamp <tobik@FreeBSD.org>2019-06-25 10:08:50 +0000
commit45662c524613c8e7609b9d7749b4d2ac41ebc805 (patch)
treeb7b41dca92cfd99e0c63169ed942ae73d7eaca40 /x11-fonts/pcf2bdf
parentf7fcbcaea6cc8289da1f5e91f97dab3f25b647ea (diff)
downloadports-45662c524613c8e7609b9d7749b4d2ac41ebc805.tar.gz
ports-45662c524613c8e7609b9d7749b4d2ac41ebc805.zip
x11-fonts/pcf2bdf: Remove useless patch
fopen(3) ignores "b".
Notes
Notes: svn path=/head/; revision=505080
Diffstat (limited to 'x11-fonts/pcf2bdf')
-rw-r--r--x11-fonts/pcf2bdf/files/patch-pcf2bdf.cc20
1 files changed, 0 insertions, 20 deletions
diff --git a/x11-fonts/pcf2bdf/files/patch-pcf2bdf.cc b/x11-fonts/pcf2bdf/files/patch-pcf2bdf.cc
deleted file mode 100644
index aa51a9e3e34c..000000000000
--- a/x11-fonts/pcf2bdf/files/patch-pcf2bdf.cc
+++ /dev/null
@@ -1,20 +0,0 @@
---- pcf2bdf.cc.orig 2015-05-18 02:55:57 UTC
-+++ pcf2bdf.cc
-@@ -580,7 +580,7 @@ int main(int argc, char *argv[])
- }
- if (ifilename)
- {
-- ifp = fopen(ifilename, "rb");
-+ ifp = fopen(ifilename, "r");
- if (!ifp)
- return error_exit("failed to open input pcf file");
- }
-@@ -607,7 +607,7 @@ int main(int argc, char *argv[])
-
- if (ofilename)
- {
-- ofp = fopen(ofilename, "wb");
-+ ofp = fopen(ofilename, "w");
- if (!ofp)
- return error_exit("failed to open output bdf file");
- }