From eabc93a1eb336bacf040bec37015a37804812cd5 Mon Sep 17 00:00:00 2001 From: Vitaliy Margolen Date: Thu, 6 Oct 2005 11:32:53 +0000 Subject: [PATCH] Add brackets around (a)?b:c construct. --- dlls/kernel/sync.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/kernel/sync.c b/dlls/kernel/sync.c index 710dd55b840..7ea4a01774c 100644 --- a/dlls/kernel/sync.c +++ b/dlls/kernel/sync.c @@ -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;