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:
dlezcano 2008-11-26 17:06:19 +00:00
parent caf249f40e
commit 7c6c0227e3

View File

@ -61,11 +61,11 @@
# endif # endif
#endif #endif
#if __i386__ || __x86_64__ || __s390__ || __powerpc__ #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__ #elif __ia64__
# define fork_ns(flags) syscall(SYS_clone2, flags|SIGCHLD, NULL); # define fork_ns(flags) syscall(SYS_clone2, flags|SIGCHLD, NULL)
#else #else
# error "unsupported architecture" # error "unsupported architecture"
#endif #endif
#define unshare_ns(flags) syscall(__NR_unshare, flags, NULL); #define unshare_ns(flags) syscall(__NR_unshare, flags, NULL)
#endif #endif