Skip to content

Commit

Permalink
At revision r247852 accidentally was removed from print the variable …
Browse files Browse the repository at this point in the history
…obj.

While here, declare some global variables as static to silence clang
warnings.

Differential Revision:	D2722
Reviewed by:		delphij, mahrens
  • Loading branch information
araujobsd committed Jun 12, 2015
1 parent 96ad224 commit aca9f1b
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions cddl/contrib/opensolaris/cmd/zdb/zdb.c
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,10 @@ uint8_t dump_opt[256];
typedef void object_viewer_t(objset_t *, uint64_t, void *data, size_t size);

extern void dump_intent_log(zilog_t *);
uint64_t *zopt_object = NULL;
int zopt_objects = 0;
libzfs_handle_t *g_zfs;
uint64_t max_inflight = 1000;
static uint64_t *zopt_object = NULL;
static int zopt_objects = 0;
static libzfs_handle_t *g_zfs;
static uint64_t max_inflight = 1000;

/*
* These libumem hooks provide a reasonable set of defaults for the allocator's
Expand Down Expand Up @@ -1488,16 +1488,14 @@ dump_deadlist(dsl_deadlist_t *dl)
dle = AVL_NEXT(&dl->dl_tree, dle)) {
if (dump_opt['d'] >= 5) {
char buf[128];
(void) snprintf(buf, sizeof (buf), "mintxg %llu -> ",
(longlong_t)dle->dle_mintxg,
(void) snprintf(buf, sizeof (buf), "mintxg %llu -> "
"obj %llu", (longlong_t)dle->dle_mintxg,
(longlong_t)dle->dle_bpobj.bpo_object);

dump_bpobj(&dle->dle_bpobj, buf, 0);
} else {
(void) printf("mintxg %llu -> obj %llu\n",
(longlong_t)dle->dle_mintxg,
(longlong_t)dle->dle_bpobj.bpo_object);

}
}
}
Expand Down

0 comments on commit aca9f1b

Please sign in to comment.