From 758f7d50e8f16689b0c540de875b7d81880a5795 Mon Sep 17 00:00:00 2001 From: ahrenholz Date: Mon, 7 Jul 2014 17:11:28 +0000 Subject: [PATCH] fix clang compile error by replacing unsigned int with long for syscall() (Boeing r1848) --- daemon/src/vnode_server.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/daemon/src/vnode_server.c b/daemon/src/vnode_server.c index 1e16e2d7..280f38a9 100644 --- a/daemon/src/vnode_server.c +++ b/daemon/src/vnode_server.c @@ -280,7 +280,8 @@ vnode_server_t *vnoded(int newnetns, const char *ctrlchnlname, const char *chdirname) { int ctrlfd; - unsigned int i, openmax; + unsigned int i; + long openmax; vnode_server_t *server; pid_t pid;