From a4cfbec3095eab68d3b21600023ad1efd89928d5 Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Mon, 19 Dec 2016 15:45:30 +0100 Subject: Fix compiler warning --- server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'server.c') diff --git a/server.c b/server.c index 9634887..6d089c1 100644 --- a/server.c +++ b/server.c @@ -754,7 +754,7 @@ WriteServerCallArg(FILE *file, const argument_t *arg) /* If the type (incl. array) is handled differently, then we need to cast it to the real argument type. */ if (it->itKernelPort || - it->itInLine && it->itVarArray && it->itElement->itKernelPort) { + (it->itInLine && it->itVarArray && it->itElement->itKernelPort)) { /* Some arguments are transformed into the correct type already. */ if (!akCheckAll(arg->argKind, akbSendRcv|akbVarNeeded)) fprintf(file, "(%s%s)", it->itTransType, -- cgit v1.2.3