From 1fe0a74e03ac1ba1f5d5b8c3de2ab01e0e67251c Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Thu, 30 Jan 2003 17:31:59 +0000 Subject: [PATCH] typedef were wrong [r687] --- ir/debug/dbginfo.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ir/debug/dbginfo.h b/ir/debug/dbginfo.h index 2fc6c4017..137a677eb 100644 --- a/ir/debug/dbginfo.h +++ b/ir/debug/dbginfo.h @@ -105,14 +105,14 @@ extern INLINE const char* dbg_action_2_str(dbg_action a) { * * @see dbg_init() */ -typedef void merge_pair_func(ir_node *, ir_node *, dbg_action); +typedef void (merge_pair_func)(ir_node *, ir_node *, dbg_action); /** * The type of the debug info merge function. * * @see dbg_init() */ -typedef void merge_sets_func(ir_node **, int, ir_node **, int, dbg_action); +typedef void (merge_sets_func)(ir_node **, int, ir_node **, int, dbg_action); /** * Initializes the debug support. -- 2.20.1