From fdd6fa07278ebcac609c848a166cab5692dd82bf Mon Sep 17 00:00:00 2001 From: Brian Behlendorf Date: Mon, 22 Dec 2008 11:02:23 -0800 Subject: [PATCH 1/2] We don't need to #undef verify here, this is handled better now with the verify cleanup --- cmd/zdb/zdb.c | 1 - 1 file changed, 1 deletion(-) diff --git a/cmd/zdb/zdb.c b/cmd/zdb/zdb.c index 253a1346a4..5f370e630d 100644 --- a/cmd/zdb/zdb.c +++ b/cmd/zdb/zdb.c @@ -52,7 +52,6 @@ #include #include #undef ZFS_MAXNAMELEN -#undef verify #include const char cmdname[] = "zdb"; From feb8aecd4783ff61c9e6f6060331a42418ac73a0 Mon Sep 17 00:00:00 2001 From: Brian Behlendorf Date: Mon, 22 Dec 2008 11:05:41 -0800 Subject: [PATCH 2/2] Fix prototype --- cmd/zdb/zdb_il.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/zdb/zdb_il.c b/cmd/zdb/zdb_il.c index 02d35a0503..9341e81c3d 100644 --- a/cmd/zdb/zdb_il.c +++ b/cmd/zdb/zdb_il.c @@ -225,7 +225,7 @@ zil_prt_rec_acl(zilog_t *zilog, int txtype, lr_acl_t *lr) (u_longlong_t)lr->lr_foid, (u_longlong_t)lr->lr_aclcnt); } -typedef void (*zil_prt_rec_func_t)(); +typedef void (*zil_prt_rec_func_t)(zilog_t *, int, lr_t *); typedef struct zil_rec_info { zil_prt_rec_func_t zri_print; char *zri_name;