From fe5d1be2f1903383a4eeb92fdbc9ef644b6d32ce Mon Sep 17 00:00:00 2001 From: John Hodge Date: Mon, 9 Jul 2012 16:23:28 +0800 Subject: [PATCH] Modules/FAT - Changed error message to be more specific --- KernelLand/Modules/Filesystems/FAT/fat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.20.1