Merge commit 'refs/top-bases/linux-have-mntent' into linux-have-mntent
This commit is contained in:
commit
5ae5b68f85
|
@ -1664,7 +1664,7 @@ dump_uberblock(uberblock_t *ub, const char *header, const char *footer)
|
||||||
{
|
{
|
||||||
time_t timestamp = ub->ub_timestamp;
|
time_t timestamp = ub->ub_timestamp;
|
||||||
|
|
||||||
(void) printf(header ? header : "");
|
(void) printf("%s", header ? header : "");
|
||||||
(void) printf("\tmagic = %016llx\n", (u_longlong_t)ub->ub_magic);
|
(void) printf("\tmagic = %016llx\n", (u_longlong_t)ub->ub_magic);
|
||||||
(void) printf("\tversion = %llu\n", (u_longlong_t)ub->ub_version);
|
(void) printf("\tversion = %llu\n", (u_longlong_t)ub->ub_version);
|
||||||
(void) printf("\ttxg = %llu\n", (u_longlong_t)ub->ub_txg);
|
(void) printf("\ttxg = %llu\n", (u_longlong_t)ub->ub_txg);
|
||||||
|
@ -1676,7 +1676,7 @@ dump_uberblock(uberblock_t *ub, const char *header, const char *footer)
|
||||||
sprintf_blkptr(blkbuf, &ub->ub_rootbp);
|
sprintf_blkptr(blkbuf, &ub->ub_rootbp);
|
||||||
(void) printf("\trootbp = %s\n", blkbuf);
|
(void) printf("\trootbp = %s\n", blkbuf);
|
||||||
}
|
}
|
||||||
(void) printf(footer ? footer : "");
|
(void) printf("%s", footer ? footer : "");
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
Loading…
Reference in New Issue