summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorValentine Barshak2019-06-09 12:30:11 +0200
committerMichael Brown2019-07-22 12:07:13 +0200
commit412acd7854de10e7194f362a6b1a3257a17974f7 (patch)
tree7a8d068b79e50bce578e721607992650914703f8
parent[smscusb] Fetch MAC from device tree for Raspberry Pi Model B+ (diff)
downloadipxe-412acd7854de10e7194f362a6b1a3257a17974f7.tar.gz
ipxe-412acd7854de10e7194f362a6b1a3257a17974f7.tar.xz
ipxe-412acd7854de10e7194f362a6b1a3257a17974f7.zip
[build] Fix "'%s' directive argument is null" error
Use '%p' directive, and print handle's address if the address is null and the handle doesn't have a name. This fixes the following compilation error: interface/efi/efi_debug.c:334:3: error: '%s' directive argument is null [-Werror=format-overflow=] Signed-off-by: Valentine Barshak <gvaxon@gmail.com> Signed-off-by: Michael Brown <mcb30@ipxe.org>
-rw-r--r--src/interface/efi/efi_debug.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/interface/efi/efi_debug.c b/src/interface/efi/efi_debug.c
index 8ea0a822..de9b1af5 100644
--- a/src/interface/efi/efi_debug.c
+++ b/src/interface/efi/efi_debug.c
@@ -331,8 +331,7 @@ void dbg_efi_protocols ( EFI_HANDLE handle ) {
/* Sanity check */
if ( ! handle ) {
- printf ( "HANDLE %s could not retrieve protocols\n",
- efi_handle_name ( handle ) );
+ printf ( "HANDLE %p could not retrieve protocols\n", handle );
return;
}