kernel: One more case of missing brackets around (a)?b:c construct

Vitaliy Margolen wine-patch at kievinfo.com
Tue Oct 4 15:32:44 CDT 2005


Vitaliy Margolen

changelog:
  kernel:
  - Add brackets around (a)?b:c construct
-------------- next part --------------
Index: dlls/kernel/sync.c
===================================================================
RCS file: /home/wine/wine/dlls/kernel/sync.c,v
retrieving revision 1.89
diff -u -p -r1.89 sync.c
--- dlls/kernel/sync.c	30 Sep 2005 10:33:43 -0000	1.89
+++ dlls/kernel/sync.c	4 Oct 2005 20:31:46 -0000
@@ -1549,7 +1549,7 @@ BOOL WINAPI CreatePipe( PHANDLE hReadPip
     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;
 


More information about the wine-patches mailing list