From: John Hodge Date: Mon, 9 Jul 2012 08:23:28 +0000 (+0800) Subject: Modules/FAT - Changed error message to be more specific X-Git-Tag: rel0.15~611^2~41^2~23 X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=fe5d1be2f1903383a4eeb92fdbc9ef644b6d32ce;p=tpg%2Facess2.git Modules/FAT - Changed error message to be more specific --- diff --git a/KernelLand/Modules/Filesystems/FAT/fat.c b/KernelLand/Modules/Filesystems/FAT/fat.c index c69a063e..3708e440 100644 --- a/KernelLand/Modules/Filesystems/FAT/fat.c +++ b/KernelLand/Modules/Filesystems/FAT/fat.c @@ -144,7 +144,7 @@ tVFS_Node *FAT_InitDevice(const char *Device, const char **Options) VFS_ReadAt(diskInfo->fileHandle, 0, 512, bs); if(bs->bps == 0 || bs->spc == 0) { - Log_Notice("FAT", "Error in FAT Boot Sector"); + Log_Notice("FAT", "Error in FAT Boot Sector (zero BPS/SPC)"); return NULL; }