Commit in freeldr/freeldr/disk on MAIN | |||
partition.c | +1 | -1 | 1.13 -> 1.14 |
After creating the nice error message, actually pass it on to the error reporting routine. Thanks Casper.
diff -u -r1.13 -r1.14 --- partition.c 21 Nov 2004 12:28:12 -0000 1.13 +++ partition.c 21 Nov 2004 21:33:04 -0000 1.14 @@ -239,7 +239,7 @@
{ 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; }