From f9ec9fe64da624104a4e7543380ac7fbc6887c8d Mon Sep 17 00:00:00 2001 From: Manuel Pitz Date: Wed, 20 Feb 2019 19:36:01 +0000 Subject: [PATCH] removed out: since unused parameter --- lib/memory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/memory.c b/lib/memory.c index a2f0b58d6..9ee08c28d 100644 --- a/lib/memory.c +++ b/lib/memory.c @@ -104,7 +104,7 @@ int memory_lock(size_t lock) debug(LOG_MEM | 2, "Increased ressource limit of locked memory to %zd bytes", lock); } #endif /* __arm__ */ -out: + #ifdef _POSIX_MEMLOCK /* Lock all current and future memory allocations */ ret = mlockall(MCL_CURRENT | MCL_FUTURE);