Commit 5c90f28d authored by Ulrich Sibiller's avatar Ulrich Sibiller Committed by Mike Gabriel

NXdispatch.c: fix invalid number of character '('

As reported by static analyzer. Attributes ArcticaProject/nx-libs#905
parent 8c5a3b82
...@@ -745,7 +745,7 @@ ProcConvertSelection(register ClientPtr client) ...@@ -745,7 +745,7 @@ ProcConvertSelection(register ClientPtr client)
#ifdef NXAGENT_SERVER #ifdef NXAGENT_SERVER
(CurrentSelections[i].window != None) && (CurrentSelections[i].client != NullClient) (CurrentSelections[i].window != None) && (CurrentSelections[i].client != NullClient)
#else #else
(CurrentSelections[i].window != None)) (CurrentSelections[i].window != None)
#endif #endif
#ifdef XCSECURITY #ifdef XCSECURITY
&& (!client->CheckAccess || && (!client->CheckAccess ||
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment