From ac33643ce23b8aee65bb4460c8723e5a87b90f9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9=20van=20Geldorp?= Date: Sun, 21 Nov 2004 21:33:04 +0000 Subject: [PATCH] After creating the nice error message, actually pass it on to the error reporting routine. Thanks Casper. svn path=/trunk/; revision=11770 --- freeldr/freeldr/disk/partition.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freeldr/freeldr/disk/partition.c b/freeldr/freeldr/disk/partition.c index 1e6ac168255..0a0e4e4a922 100644 --- a/freeldr/freeldr/disk/partition.c +++ b/freeldr/freeldr/disk/partition.c @@ -239,7 +239,7 @@ BOOL DiskReadBootRecord(U32 DriveNumber, U64 LogicalSectorNumber, PMASTER_BOOT_R { sprintf(ErrMsg, "Invalid partition table magic 0x%x found on drive 0x%x", BootRecord->MasterBootRecordMagic, DriveNumber); - DiskError("Invalid partition table magic (0xaa55)", 0); + DiskError(ErrMsg, 0); return FALSE; }