From 430557e08f58a38cf8f5ddff0fd36824476fa7dd Mon Sep 17 00:00:00 2001 From: Rafal Kupiec Date: Fri, 16 Feb 2024 23:05:24 +0100 Subject: [PATCH] Fix printing hard drive GUID --- xtldr/volume.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xtldr/volume.c b/xtldr/volume.c index 1a58cc4..fc78ded 100644 --- a/xtldr/volume.c +++ b/xtldr/volume.c @@ -138,7 +138,7 @@ BlEnumerateBlockDevices() /* Print debug message */ BlDebugPrint(L"Found Hard Disk partition (DiskNumber: %lu, PartNumber: %lu, " - L"MBRType: %u, GUID: {%g}, PartSize: %luB)\n", + L"MBRType: %u, GUID: {%U}, PartSize: %uB)\n", DriveNumber, PartitionNumber, HDPath->MBRType, PartitionGuid, HDPath->PartitionSize * Media->BlockSize); }