fix clang compile error by replacing unsigned int with long for syscall()

(Boeing r1848)
This commit is contained in:
ahrenholz 2014-07-07 17:11:28 +00:00
parent 5ad8bb5c3e
commit 758f7d50e8

View file

@ -280,7 +280,8 @@ vnode_server_t *vnoded(int newnetns, const char *ctrlchnlname,
const char *chdirname) const char *chdirname)
{ {
int ctrlfd; int ctrlfd;
unsigned int i, openmax; unsigned int i;
long openmax;
vnode_server_t *server; vnode_server_t *server;
pid_t pid; pid_t pid;