From 6da71c140475318ab6449673f42b14329e2c75e6 Mon Sep 17 00:00:00 2001 From: Brian Behlendorf Date: Mon, 22 Dec 2008 10:20:57 -0800 Subject: [PATCH] Fix twop more missing voids in prototypes --- cmd/zdb/zdb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/zdb/zdb.c b/cmd/zdb/zdb.c index 253a1346a4..ee097fdba1 100644 --- a/cmd/zdb/zdb.c +++ b/cmd/zdb/zdb.c @@ -72,7 +72,7 @@ int zdb_sig_cksumalg = ZIO_CHECKSUM_SHA256; * debugging facilities. */ const char * -_umem_debug_init() +_umem_debug_init(void) { return ("default,verbose"); /* $UMEM_DEBUG setting */ } @@ -860,7 +860,7 @@ static avl_tree_t domain_tree; static boolean_t fuid_table_loaded; static void -fuid_table_destroy() +fuid_table_destroy(void) { if (fuid_table_loaded) { zfs_fuid_table_destroy(&idx_tree, &domain_tree);