From cfbc6b044118ea3ad7a10b13f9e884eacd582a74 Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Mon, 28 Apr 2014 12:50:44 +0200 Subject: [PATCH] remove useless parantheses --- routed.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routed.cpp b/routed.cpp index 855ec04c4..518e90af4 100644 --- a/routed.cpp +++ b/routed.cpp @@ -89,7 +89,7 @@ int main (int argc, const char * argv[]) } #ifdef __linux__ - const int lock_flags = (MCL_CURRENT | MCL_FUTURE); + const int lock_flags = MCL_CURRENT | MCL_FUTURE; if (-1 == mlockall(lock_flags)) { SimpleLogger().Write(logWARNING) << "Process " << argv[0] << " could not be locked to RAM";