Commit 7c6c0227 by dlezcano

Fix compilation error

From: Daniel Lezcano <dlezcano@fr.ibm.com> Remove ';' symbol at the end of the macro. Signed-off-by: 's avatarDaniel Lezcano <dlezcano@fr.ibm.com>
parent caf249f4
......@@ -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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment