diff options
author | Steve Price <steve@FreeBSD.org> | 1999-09-27 01:55:49 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1999-09-27 01:55:49 +0000 |
commit | 30d6b7b2dab6ba4a991f43eb4a492c996680e62e (patch) | |
tree | 0e40c7165f9f219e831fe4818de3860c39bdf4b0 /mbone | |
parent | No need to include ':install' at the end of the BUILD_DEPENDS line since (diff) |
Make the second argument to hcreate a size_t so this compiles cleanly
on the Alpha.
Notes
Notes:
svn path=/head/; revision=21972
Diffstat (limited to 'mbone')
-rw-r--r-- | mbone/nte/files/patch-ae | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/mbone/nte/files/patch-ae b/mbone/nte/files/patch-ae index 67c19eb42c95..9db8fcdbb927 100644 --- a/mbone/nte/files/patch-ae +++ b/mbone/nte/files/patch-ae @@ -1,5 +1,5 @@ -*** src/hsearch.c.orig Thu Oct 31 16:19:42 1996 ---- src/hsearch.c Thu Oct 31 16:20:02 1996 +*** src/hsearch.c.orig Thu Jan 29 03:06:18 1998 +--- src/hsearch.c Sun Sep 19 09:42:04 1999 *************** *** 19,25 **** Cambridge, MA 02139, USA. */ @@ -17,3 +17,20 @@ #include <string.h> #include "search.h" +*************** +*** 76,82 **** + */ + + int +! DEFUN(hcreate, (nel), unsigned nel) + { + /* There is still a table active. Return with error. */ + if (htable != NULL) +--- 76,82 ---- + */ + + int +! DEFUN(hcreate, (nel), size_t nel) + { + /* There is still a table active. Return with error. */ + if (htable != NULL) |