From dc745ef621c02934b89f5c1764fc0c51c51ccb1e Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Wed, 29 Jun 2011 16:39:19 -0400 Subject: [PATCH] urcu-bp: mremap wrapper fix Signed-off-by: Mathieu Desnoyers --- urcu-bp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/urcu-bp.c b/urcu-bp.c index 2b531a3..39a6cd0 100644 --- a/urcu-bp.c +++ b/urcu-bp.c @@ -56,7 +56,7 @@ */ void *mremap(void *old_address, size_t old_size, size_t new_size, int flags) { - void *new_arena; + void *new_address; assert(flags & MREMAP_MAYMOVE); assert(!(flags & MREMAP_FIXED)); -- 2.34.1