mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-22 10:37:35 +03:00
Fix gcc fortify source warnings
Resolve issues uncovered by -D_FORTIFY_SOURCE=2, the default redhat
macro's file adds this option to the cflags. This causes warnings
of the following type designed to keep the developer honest:
warning: ignoring return value of 'foo', declared
with attribute warn_unused_result
The short term fix is to wrap these calls in VERIFY() to check the
return code. The code was already assusing these would never fail.
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
This commit is contained in:
+3
-3
@@ -1668,7 +1668,7 @@ dump_uberblock(uberblock_t *ub, const char *header, const char *footer)
|
||||
{
|
||||
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("\tversion = %llu\n", (u_longlong_t)ub->ub_version);
|
||||
(void) printf("\ttxg = %llu\n", (u_longlong_t)ub->ub_txg);
|
||||
@@ -1680,7 +1680,7 @@ dump_uberblock(uberblock_t *ub, const char *header, const char *footer)
|
||||
sprintf_blkptr(blkbuf, &ub->ub_rootbp);
|
||||
(void) printf("\trootbp = %s\n", blkbuf);
|
||||
}
|
||||
(void) printf(footer ? footer : "");
|
||||
(void) printf("%s", footer ? footer : "");
|
||||
}
|
||||
|
||||
static void
|
||||
@@ -2554,7 +2554,7 @@ zdb_dump_block_raw(void *buf, uint64_t size, int flags)
|
||||
{
|
||||
if (flags & ZDB_FLAG_BSWAP)
|
||||
byteswap_uint64_array(buf, size);
|
||||
(void) write(1, buf, size);
|
||||
VERIFY(write(fileno(stdout), buf, size) == size);
|
||||
}
|
||||
|
||||
static void
|
||||
|
||||
Reference in New Issue
Block a user