diff options
author | petef <petef@FreeBSD.org> | 2002-06-07 17:48:47 +0000 |
---|---|---|
committer | petef <petef@FreeBSD.org> | 2002-06-07 17:48:47 +0000 |
commit | 3a01470dc5dba37003dd9b6215d2f7c2bc4cf6a0 (patch) | |
tree | f3a462d05317cdf2614fec9e627be121f0181644 /converters/aish | |
parent | fc72b062568294550a3e850ba4820e6f161f5dfb (diff) | |
download | FreeBSD-ports-3a01470dc5dba37003dd9b6215d2f7c2bc4cf6a0.zip FreeBSD-ports-3a01470dc5dba37003dd9b6215d2f7c2bc4cf6a0.tar.gz |
Fix build on -current.
Submitted by: bento
Diffstat (limited to 'converters/aish')
-rw-r--r-- | converters/aish/files/patch-ai_unix.c | 13 |
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 0000000..1dede12 --- /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 |