0f796dd004
Update to v4.1.0. Also includes other major packaging changes as follows: There is a new package maintenance workflow - see README.PACKAGING for details. The sibling packages qemu-linux-user and qemu-testsuite are now created with the Build Service's MultiBuild feature. This also necessitates combining the qemu-linux-user changelog content back into qemu's. Luckily the delta there is quite small. Note that the qemu spec file is now that much busier, but added section markers should help reduce the confusion. Also qemu is being enabled for RISCV host compatibility, so some changes are related to that as well. OBS-URL: https://build.opensuse.org/request/show/730437 OBS-URL: https://build.opensuse.org/package/show/Virtualization/qemu?expand=0&rev=487
36 lines
1.2 KiB
Diff
36 lines
1.2 KiB
Diff
From: Valentine Barshak <gvaxon@gmail.com>
|
|
Date: Sun, 9 Jun 2019 13:30:11 +0300
|
|
Subject: Fix "'%s' directive argument is null" error
|
|
|
|
Git-commit: 412acd7854de10e7194f362a6b1a3257a17974f7
|
|
References: bsc#1121464
|
|
|
|
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>
|
|
Signed-off-by: Bruce Rogers <brogers@suse.com>
|
|
---
|
|
src/interface/efi/efi_debug.c | 3 +--
|
|
1 file changed, 1 insertion(+), 2 deletions(-)
|
|
|
|
diff --git a/roms/ipxe/src/interface/efi/efi_debug.c b/roms/ipxe/src/interface/efi/efi_debug.c
|
|
index 8ea0a822d044caca088c64ca2407..de9b1af5579cfddba1b55788b7b6 100644
|
|
--- a/roms/ipxe/src/interface/efi/efi_debug.c
|
|
+++ b/roms/ipxe/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;
|
|
}
|
|
|