From b09ad5e91ce8e6ffee68a1df38f23792aaf9c51f Mon Sep 17 00:00:00 2001 From: Mehul Arora Date: Wed, 12 May 2021 12:13:06 +0530 Subject: [PATCH] Fixed macro in subproc.cc --- subproc.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subproc.cc b/subproc.cc index 154e4b7..c1d9c41 100644 --- a/subproc.cc +++ b/subproc.cc @@ -60,7 +60,7 @@ namespace subproc { #define CLONE_NEWCGROUP 0x02000000 #endif /* !defined(CLONE_NEWCGROUP) */ #if !defined(CLONE_NEWTIME) -#define #define CLONE_NEWTIME 0x00000080 +#define CLONE_NEWTIME 0x00000080 #endif /* !defined(CLONE_NEWTIME) */ static const std::string cloneFlagsToStr(uintptr_t flags) {