Add brackets around (a)?b:c construct.

This commit is contained in:
Vitaliy Margolen 2005-10-06 11:32:53 +00:00 committed by Alexandre Julliard
parent 2bbf1b5baf
commit eabc93a1eb
1 changed files with 1 additions and 1 deletions

View File

@ -1549,7 +1549,7 @@ BOOL WINAPI CreatePipe( PHANDLE hReadPipe, PHANDLE hWritePipe,
attr.RootDirectory = 0;
attr.ObjectName = &nt_name;
attr.Attributes = OBJ_CASE_INSENSITIVE |
(sa && sa->bInheritHandle) ? OBJ_INHERIT : 0;
((sa && sa->bInheritHandle) ? OBJ_INHERIT : 0);
attr.SecurityDescriptor = sa ? sa->lpSecurityDescriptor : NULL;
attr.SecurityQualityOfService = NULL;