mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
[FLTMGR]: Remove a MSVC warning: FltObjectDereference, whose prototype is publicly defined in fltkernel.h, doesn't return any value.
svn path=/trunk/; revision=71864
This commit is contained in:
parent
442231df6f
commit
b5bf3c7a1f
1 changed files with 2 additions and 2 deletions
|
@ -36,11 +36,11 @@ FltObjectReference(_Inout_ PFLT_OBJECT Object)
|
|||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
BOOLEAN
|
||||
VOID
|
||||
NTAPI
|
||||
FltObjectDereference(_Inout_ PFLT_OBJECT Object)
|
||||
{
|
||||
return FltpExReleaseRundownProtection(&Object->RundownRef);
|
||||
FltpExReleaseRundownProtection(&Object->RundownRef);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue