Author: pschweitzer Date: Thu May 2 08:04:12 2013 New Revision: 58910
URL: http://svn.reactos.org/svn/reactos?rev=58910&view=rev Log: [NTOSKRNL] This is C, use VOID Spotted by Thomas Faber
Modified: trunk/reactos/ntoskrnl/fsrtl/fsrtlpc.c trunk/reactos/ntoskrnl/fsrtl/stackovf.c
Modified: trunk/reactos/ntoskrnl/fsrtl/fsrtlpc.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/fsrtl/fsrtlpc.c?re... ============================================================================== --- trunk/reactos/ntoskrnl/fsrtl/fsrtlpc.c [iso-8859-1] (original) +++ trunk/reactos/ntoskrnl/fsrtl/fsrtlpc.c [iso-8859-1] Thu May 2 08:04:12 2013 @@ -16,7 +16,7 @@
PERESOURCE FsRtlPagingIoResources; ULONG FsRtlPagingIoResourceSelector; -NTSTATUS NTAPI INIT_FUNCTION FsRtlInitializeWorkerThread(); +NTSTATUS NTAPI INIT_FUNCTION FsRtlInitializeWorkerThread(VOID);
static UCHAR LegalAnsiCharacterArray[] = {
Modified: trunk/reactos/ntoskrnl/fsrtl/stackovf.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/fsrtl/stackovf.c?r... ============================================================================== --- trunk/reactos/ntoskrnl/fsrtl/stackovf.c [iso-8859-1] (original) +++ trunk/reactos/ntoskrnl/fsrtl/stackovf.c [iso-8859-1] Thu May 2 08:04:12 2013 @@ -147,7 +147,7 @@ NTSTATUS NTAPI INIT_FUNCTION -FsRtlInitializeWorkerThread() +FsRtlInitializeWorkerThread(VOID) { ULONG i; NTSTATUS Status;