From 450a15d61f7b28394250b24f31e493fe67d9994d Mon Sep 17 00:00:00 2001 From: James Tabor Date: Wed, 31 Mar 2004 03:39:12 +0000 Subject: [PATCH] More Oops! svn path=/trunk/; revision=8933 --- reactos/drivers/storage/disk/disk.c | 11 +---------- reactos/drivers/storage/disk/makefile | 4 ++-- 2 files changed, 3 insertions(+), 12 deletions(-) diff --git a/reactos/drivers/storage/disk/disk.c b/reactos/drivers/storage/disk/disk.c index 5580410c74b..4a72e2b06ce 100644 --- a/reactos/drivers/storage/disk/disk.c +++ b/reactos/drivers/storage/disk/disk.c @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* $Id: disk.c,v 1.36 2004/03/31 03:33:48 jimtabor Exp $ +/* $Id: disk.c,v 1.37 2004/03/31 03:39:12 jimtabor Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -111,15 +111,6 @@ static NTSTATUS DiskBuildPartionTable(IN PDEVICE_OBJECT DiskDeviceObject, IN PIRP Irp); -VOID STDCALL -DiskClassStartIo (IN PDEVICE_OBJECT DeviceObject, - IN PIRP Irp); - -NTSTATUS STDCALL -DiskDeviceControlCompletion (IN PDEVICE_OBJECT DeviceObject, - IN PIRP Irp, - IN PVOID Context); - /* FUNCTIONS ****************************************************************/ diff --git a/reactos/drivers/storage/disk/makefile b/reactos/drivers/storage/disk/makefile index 1d26d39e95b..6753b8f231a 100644 --- a/reactos/drivers/storage/disk/makefile +++ b/reactos/drivers/storage/disk/makefile @@ -1,4 +1,4 @@ -# $Id: makefile,v 1.6 2004/03/31 03:34:42 jimtabor Exp $ +# $Id: makefile,v 1.7 2004/03/31 03:39:12 jimtabor Exp $ PATH_TO_TOP = ../../.. @@ -12,7 +12,7 @@ TARGET_DDKLIBS = class2.a TARGET_OBJECTS = $(TARGET_NAME).o -TARGET_CFLAGS = Werror -Wall +TARGET_CFLAGS = -Werror -Wall include $(PATH_TO_TOP)/rules.mak