From 6dd178030b383f453472d4495de49bcb3901fa18 Mon Sep 17 00:00:00 2001 From: SergeySlice Date: Sun, 30 Aug 2020 20:25:16 +0300 Subject: [PATCH] more informative print Signed-off-by: SergeySlice --- rEFIt_UEFI/Platform/FixBiosDsdt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rEFIt_UEFI/Platform/FixBiosDsdt.cpp b/rEFIt_UEFI/Platform/FixBiosDsdt.cpp index c2968d409..9a7c54171 100755 --- a/rEFIt_UEFI/Platform/FixBiosDsdt.cpp +++ b/rEFIt_UEFI/Platform/FixBiosDsdt.cpp @@ -1293,7 +1293,7 @@ template INT32 CmpDev(UINT8 *dsdt, UINT32 i, const T& Name) { if ( Name.length() != 4 ) { - MsgLog("ATTENTION : CmpDev called with a name with length() != 4\n"); + MsgLog("ATTENTION : CmpDev called with a %s with length() != 4 %ld\n", Name.data(), Name.length()); return 0; } if ((dsdt[i+0] == Name[0]) && (dsdt[i+1] == Name[1]) &&