[efi] Fix misleading debug message

Signed-off-by: Michael Brown <mcb30@ipxe.org>
pull/226/head
Michael Brown 2021-01-26 22:25:18 +00:00
parent f4c3a01470
commit 4f9fbe6c16
1 changed files with 2 additions and 1 deletions

View File

@ -756,7 +756,8 @@ static EFI_STATUS EFIAPI efi_pxe_start ( EFI_PXE_BASE_CODE_PROTOCOL *base,
sa_family_t family = ( use_ipv6 ? AF_INET6 : AF_INET );
int rc;
DBGC ( pxe, "PXE %s START %s\n", pxe->name, ( ipv6 ? "IPv6" : "IPv4" ));
DBGC ( pxe, "PXE %s START %s\n",
pxe->name, ( use_ipv6 ? "IPv6" : "IPv4" ) );
/* Initialise mode structure */
memset ( mode, 0, sizeof ( *mode ) );