diff options
Diffstat (limited to 'lib/isc/hash.c')
-rw-r--r-- | lib/isc/hash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/isc/hash.c b/lib/isc/hash.c index f70e7943312d..e12c47183f21 100644 --- a/lib/isc/hash.c +++ b/lib/isc/hash.c @@ -283,7 +283,7 @@ isc_hash_ctxinit(isc_hash_t *hctx) { } void -isc_hash_init() { +isc_hash_init(void) { INSIST(hash != NULL && VALID_HASH(hash)); isc_hash_ctxinit(hash); @@ -348,7 +348,7 @@ isc_hash_ctxdetach(isc_hash_t **hctxp) { } void -isc_hash_destroy() { +isc_hash_destroy(void) { unsigned int refs; INSIST(hash != NULL && VALID_HASH(hash)); |