From 7e078309ea28ffa533e32227ddb429f05a298d5c Mon Sep 17 00:00:00 2001 From: Sung-jae Park Date: Thu, 14 May 2015 13:59:51 +0900 Subject: [PATCH] Fix build breaks for 64 Change-Id: I14eb20e36da48feda3634d4340c83839e012dbeb --- src/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util.c b/src/util.c index c690bad..20ed817 100644 --- a/src/util.c +++ b/src/util.c @@ -119,7 +119,7 @@ HAPI char *util_get_current_module(char **symbol) register int i; if (!pthread_getattr_np(pthread_self(), &attr)) { - if (!pthread_attr_getstack(&attr, (void *)&stack_boundary, &stack_size)) { + if (!pthread_attr_getstack(&attr, (void **)&stack_boundary, &stack_size)) { stack_boundary += stack_size; } pthread_attr_destroy(&attr); -- 2.7.4