Add brackets around (a)?b:c construct.
This commit is contained in:
parent
2bbf1b5baf
commit
eabc93a1eb
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue