mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Fix compiler warning.
svn path=/trunk/; revision=13189
This commit is contained in:
parent
a016befb78
commit
955bb3e32e
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ ObpCaptureObjectAttributes(IN POBJECT_ATTRIBUTES ObjectAttributes OPTIONAL,
|
|||
NTSTATUS Status = STATUS_SUCCESS;
|
||||
|
||||
/* at least one output parameter must be != NULL! */
|
||||
ASSERT((ULONG_PTR)CapturedObjectAttributes ^ (ULONG_PTR)ObjectName != 0);
|
||||
ASSERT(((ULONG_PTR)CapturedObjectAttributes ^ (ULONG_PTR)ObjectName) != 0);
|
||||
|
||||
if(ObjectAttributes == NULL)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue