aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2021-09-15 16:03:17 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2021-09-15 16:03:17 +0000
commitb14cd3a8339ea72cf39df4ccc53c830875c5d866 (patch)
treec9f0877ef99679a09e9acbe4ac7caf3e3766a31a
parent4c9cb057bd96bd10278f5ce7a735fff4c08e3c30 (diff)
downloadsrc-b14cd3a8339ea72cf39df4ccc53c830875c5d866.tar.gz
src-b14cd3a8339ea72cf39df4ccc53c830875c5d866.zip
efitable: Don't pass NULL as a format string to xo_err().
This fixes a -Wformat error reported by GCC 9. Reviewed by: kib Differential Revision: https://reviews.freebsd.org/D31939
-rw-r--r--usr.sbin/efitable/efitable.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/efitable/efitable.c b/usr.sbin/efitable/efitable.c
index 367ce3f033b1..6bd4d96ffd2a 100644
--- a/usr.sbin/efitable/efitable.c
+++ b/usr.sbin/efitable/efitable.c
@@ -146,13 +146,13 @@ main(int argc, char **argv)
table.uuid = efi_table_ops[efi_idx].uuid;
if (ioctl(efi_fd, EFIIOC_GET_TABLE, &table) == -1)
- xo_err(EX_OSERR, NULL);
+ xo_err(EX_OSERR, "EFIIOC_GET_TABLE (len == 0)");
table.buf = malloc(table.table_len);
table.buf_len = table.table_len;
if (ioctl(efi_fd, EFIIOC_GET_TABLE, &table) == -1)
- xo_err(EX_OSERR, NULL);
+ xo_err(EX_OSERR, "EFIIOC_GET_TABLE");
efi_table_ops[efi_idx].parse(table.buf);
close(efi_fd);