From 8afa712c7a376a0236cf6f6abf57ab822c3fb744 Mon Sep 17 00:00:00 2001 From: Ged Murphy Date: Thu, 10 Mar 2011 15:37:51 +0000 Subject: [PATCH] FatCreateCcb has no params. Fixes building on msvc svn path=/trunk/; revision=51011 --- reactos/drivers/filesystems/fastfat_new/dir.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/drivers/filesystems/fastfat_new/dir.c b/reactos/drivers/filesystems/fastfat_new/dir.c index 991971545bf..b1fb747ddad 100644 --- a/reactos/drivers/filesystems/fastfat_new/dir.c +++ b/reactos/drivers/filesystems/fastfat_new/dir.c @@ -248,7 +248,7 @@ FatiOpenExistingDcb(IN PFAT_IRP_CONTEXT IrpContext, } /* Set the file object */ - Ccb = FatCreateCcb(IrpContext); + Ccb = FatCreateCcb(); FatSetFileObject(FileObject, UserDirectoryOpen, Dcb, -- 2.17.1