From a371a9b49802da3ca2703a8789e57cb08dcd27fe Mon Sep 17 00:00:00 2001 From: Pierre Schweitzer Date: Sun, 28 Dec 2014 21:29:32 +0000 Subject: [PATCH] [NTOSKRNL] Add missing specifiers svn path=/trunk/; revision=65864 --- reactos/ntoskrnl/io/iomgr/file.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/ntoskrnl/io/iomgr/file.c b/reactos/ntoskrnl/io/iomgr/file.c index d82779c34a9..44f5c3464c8 100644 --- a/reactos/ntoskrnl/io/iomgr/file.c +++ b/reactos/ntoskrnl/io/iomgr/file.c @@ -1318,7 +1318,7 @@ IopDeleteFile(IN PVOID ObjectBody) PDEVICE_OBJECT NTAPI -IopGetDeviceAttachmentBase(PDEVICE_OBJECT DeviceObject) +IopGetDeviceAttachmentBase(IN PDEVICE_OBJECT DeviceObject) { PDEVICE_OBJECT PDO = DeviceObject; @@ -1331,7 +1331,7 @@ IopGetDeviceAttachmentBase(PDEVICE_OBJECT DeviceObject) PDEVICE_OBJECT NTAPI -IopGetDevicePDO(PDEVICE_OBJECT DeviceObject) +IopGetDevicePDO(IN PDEVICE_OBJECT DeviceObject) { KIRQL OldIrql; PDEVICE_OBJECT PDO; -- 2.17.1