From e08e44d5f9567440824ab1e8b82c6b348a3a49d3 Mon Sep 17 00:00:00 2001 From: Bill Zissimopoulos Date: Sun, 20 Dec 2015 12:15:23 -0800 Subject: [PATCH] Major refactoring: WIP --- src/sys/device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sys/device.c b/src/sys/device.c index e3777cfb..bf812944 100644 --- a/src/sys/device.c +++ b/src/sys/device.c @@ -232,7 +232,7 @@ static NTSTATUS FspFsvolDeviceInit(PDEVICE_OBJECT DeviceObject) if (!NT_SUCCESS(Result)) return Result; - /* allocate a spare VPB in case we are mounted on an fsvrt */ + /* allocate a spare VPB in case we are mounted on a virtual disk */ if (FILE_DEVICE_DISK_FILE_SYSTEM == DeviceObject->DeviceType) { FsvolDeviceExtension->SwapVpb = FspAllocNonPagedExternal(sizeof *FsvolDeviceExtension->SwapVpb);