IPC: hopefully fix compiling under AIX
authorRuben Kerkhof <ruben@rubenkerkhof.com>
Sat, 12 Mar 2016 21:50:09 +0000 (22:50 +0100)
committerRuben Kerkhof <ruben@rubenkerkhof.com>
Sat, 12 Mar 2016 21:50:09 +0000 (22:50 +0100)
This code couldn't possibly have compiled.

Found by cppcheck:
[src/ipc.c:285]: (error) Invalid number of character '{' when these
macros are defined: 'KERNEL_AIX'.

src/ipc.c

index b403847..645d4b0 100644 (file)
--- a/src/ipc.c
+++ b/src/ipc.c
@@ -298,7 +298,7 @@ static int ipc_read_msg (void) /* {{{ */
     msg_alloc_queues++;
     msg_used_space += ipcinfo_msg[i].msg_cbytes;
     msg_qnum += ipcinfo_msg[i].msg_qnum;
-
+  }
   free(ipcinfo_msg);
 
   ipc_submit_g("msg", "count", "queues", msg_alloc_queues);