fix clang compile error by replacing unsigned int with long for syscall()
(Boeing r1848)
This commit is contained in:
parent
5ad8bb5c3e
commit
758f7d50e8
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue