diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2000-06-18 19:48:55 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2000-06-18 19:48:55 +0000 |
commit | 9d27012e294ea0577d6aa30e74c2c7c2b88d23ed (patch) | |
tree | 6806f734aa26588ce170a510752ee04b77abe147 | |
parent | f90ad8d4a894c74617d747e39c17d0a5c192e6ee (diff) |
Correct function declaration.
-rw-r--r-- | sys/netinet/ip_ipsp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/ip_ipsp.c b/sys/netinet/ip_ipsp.c index dd6135e4d89..7d3eab8f5ab 100644 --- a/sys/netinet/ip_ipsp.c +++ b/sys/netinet/ip_ipsp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ipsp.c,v 1.94 2000/06/18 19:10:07 angelos Exp $ */ +/* $OpenBSD: ip_ipsp.c,v 1.95 2000/06/18 19:48:54 angelos Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), @@ -618,7 +618,7 @@ gettdb(u_int32_t spi, union sockaddr_union *dst, u_int8_t proto) #if DDB void -tdb_hashstats() +tdb_hashstats(void) { int i, cnt, buckets[16]; struct tdb *tdbp; |