mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
Add brackets around (a)?b:c construct.
This commit is contained in:
parent
2bbf1b5baf
commit
eabc93a1eb
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue