summaryrefslogtreecommitdiff
path: root/converters
diff options
context:
space:
mode:
authorPete Fritchman <petef@FreeBSD.org>2002-06-07 17:48:47 +0000
committerPete Fritchman <petef@FreeBSD.org>2002-06-07 17:48:47 +0000
commit6700bfc4b8f75e2b700e19d8a33c5dce194738fa (patch)
treedf9dfe47c9f06a58420a9e945a1d525dfb597acd /converters
parentInstallation will fail if Linux strip is not found, allow the install (diff)
Fix build on -current.
Submitted by: bento
Notes
Notes: svn path=/head/; revision=60787
Diffstat (limited to 'converters')
-rw-r--r--converters/aish/files/patch-ai_unix.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/converters/aish/files/patch-ai_unix.c b/converters/aish/files/patch-ai_unix.c
new file mode 100644
index 000000000000..1dede121cd74
--- /dev/null
+++ b/converters/aish/files/patch-ai_unix.c
@@ -0,0 +1,13 @@
+$FreeBSD$
+
+--- ai_unix.c.orig Fri Jun 7 12:59:05 2002
++++ ai_unix.c Fri Jun 7 13:00:49 2002
+@@ -15,7 +15,7 @@
+ char *ptr;
+ {
+ #ifdef BZ_BSD
+- return bzero( ptr, len );
++ bzero( ptr, len );
+ #else
+ return memset( ptr, '\0', len );
+ #endif