diff options
author | steve <steve@FreeBSD.org> | 1999-09-27 09:55:49 +0800 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-09-27 09:55:49 +0800 |
commit | 08692dc2e99fa0fa443a09df9dea5595bd6722d1 (patch) | |
tree | 2cbc0653a417abf52088078414c7830c9c8c7d37 | |
parent | 0ddba1089df6dfec3ae0e6080c46d2ea8560e140 (diff) | |
download | freebsd-ports-gnome-08692dc2e99fa0fa443a09df9dea5595bd6722d1.tar.gz freebsd-ports-gnome-08692dc2e99fa0fa443a09df9dea5595bd6722d1.tar.zst freebsd-ports-gnome-08692dc2e99fa0fa443a09df9dea5595bd6722d1.zip |
Make the second argument to hcreate a size_t so this compiles cleanly
on the Alpha.
-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) |