Module: wine Branch: master Commit: 2a071639010232e8a45ef4ea8231b90cc7c9b7c5 URL: http://source.winehq.org/git/wine.git/?a=commit;h=2a071639010232e8a45ef4ea82... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Thu Jan 28 15:52:32 2010 +0100 dbghelp: Fix the Mac OS build. --- dlls/dbghelp/macho_module.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/dlls/dbghelp/macho_module.c b/dlls/dbghelp/macho_module.c index 4cc220e..379596b 100644 --- a/dlls/dbghelp/macho_module.c +++ b/dlls/dbghelp/macho_module.c @@ -826,8 +826,7 @@ static void macho_finish_stabs(struct module* module, struct hash_table* ht_symt if (ste->is_public && !(dbghelp_options & SYMOPT_NO_PUBLICS)) { - symt_new_public(module, ste->compiland, ste->ht_elt.name, - ste->addr, 0, ste->is_code, ste->is_code); + symt_new_public(module, ste->compiland, ste->ht_elt.name, ste->addr, 0); } } }