mirror of
https://git.proxmox.com/git/mirror_lxc
synced 2025-08-15 15:01:57 +00:00
Fix compilation error
From: Daniel Lezcano <dlezcano@fr.ibm.com> Remove ';' symbol at the end of the macro. Signed-off-by: Daniel Lezcano <dlezcano@fr.ibm.com>
This commit is contained in:
parent
caf249f40e
commit
7c6c0227e3
@ -61,11 +61,11 @@
|
||||
# endif
|
||||
#endif
|
||||
#if __i386__ || __x86_64__ || __s390__ || __powerpc__
|
||||
# define fork_ns(flags) syscall(SYS_clone, flags|SIGCHLD, NULL);
|
||||
# define fork_ns(flags) syscall(SYS_clone, flags|SIGCHLD, NULL)
|
||||
#elif __ia64__
|
||||
# define fork_ns(flags) syscall(SYS_clone2, flags|SIGCHLD, NULL);
|
||||
# define fork_ns(flags) syscall(SYS_clone2, flags|SIGCHLD, NULL)
|
||||
#else
|
||||
# error "unsupported architecture"
|
||||
#endif
|
||||
#define unshare_ns(flags) syscall(__NR_unshare, flags, NULL);
|
||||
#define unshare_ns(flags) syscall(__NR_unshare, flags, NULL)
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user