From e4e9b912750e5778f84d18f40966f2003a38082d Mon Sep 17 00:00:00 2001 From: Kovarththanan Rajaratnam Date: Mon, 17 Aug 2009 04:23:47 +0000 Subject: [PATCH] Add proper type cast. Thanks to Martin for reporting this. svn path=/trunk/; revision=29451 --- epan/except.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/epan/except.c b/epan/except.c index f740ebc012..8529a8a24a 100644 --- a/epan/except.c +++ b/epan/except.c @@ -139,7 +139,7 @@ void except_deinit(void) static int init_counter; static void unhandled_catcher(except_t *); static void (*uh_catcher_ptr)(except_t *) = unhandled_catcher; -static void *(*allocator)(size_t) = g_malloc; +static void *(*allocator)(size_t) = (void *(*)(size_t)) g_malloc; static void (*deallocator)(void *) = g_free; static struct except_stacknode *stack_top;