aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorb1f6c1c4 <b1f6c1c4@gmail.com>2020-12-26 19:15:54 -0500
committerMichael Brown <mcb30@ipxe.org>2020-12-29 13:16:22 +0000
commit485f8ce5547f5c165b4eeecb388bc7e1ce5cad12 (patch)
tree4046d816678298dcedaa22579c4778aa2d3c24a9
parentda491eaae721d49f2a1ff72a9c2c32119eb0de2c (diff)
downloadipxe-485f8ce5547f5c165b4eeecb388bc7e1ce5cad12.zip
ipxe-485f8ce5547f5c165b4eeecb388bc7e1ce5cad12.tar.gz
ipxe-485f8ce5547f5c165b4eeecb388bc7e1ce5cad12.tar.bz2
[efi] Allow for longer device paths in debug messages
Modified-by: Michael Brown <mcb30@ipxe.org> Signed-off-by: Michael Brown <mcb30@ipxe.org>
-rw-r--r--src/interface/efi/efi_debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interface/efi/efi_debug.c b/src/interface/efi/efi_debug.c
index 6515b92..967bb61 100644
--- a/src/interface/efi/efi_debug.c
+++ b/src/interface/efi/efi_debug.c
@@ -374,7 +374,7 @@ void dbg_efi_protocols ( EFI_HANDLE handle ) {
const __attribute__ (( pure )) char *
efi_devpath_text ( EFI_DEVICE_PATH_PROTOCOL *path ) {
EFI_BOOT_SERVICES *bs = efi_systab->BootServices;
- static char text[256];
+ static char text[512];
size_t len;
CHAR16 *wtext;