From 56058ddb15a63380db01e83ffee897f1e978fdbc Mon Sep 17 00:00:00 2001 From: Hans Leidekker Date: Mon, 16 May 2005 08:47:55 +0000 Subject: [PATCH] Silence some unknown stab type messages. --- dlls/dbghelp/stabs.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dlls/dbghelp/stabs.c b/dlls/dbghelp/stabs.c index 93843a78f69..dba254f7ad0 100644 --- a/dlls/dbghelp/stabs.c +++ b/dlls/dbghelp/stabs.c @@ -73,9 +73,11 @@ WINE_DEFAULT_DEBUG_CHANNEL(dbghelp_stabs); #define N_LCSYM 0x28 #define N_MAIN 0x2a #define N_ROSYM 0x2c +#define N_BNSYM 0x2e #define N_OPT 0x3c #define N_RSYM 0x40 #define N_SLINE 0x44 +#define N_ENSYM 0x4e #define N_SO 0x64 #define N_LSYM 0x80 #define N_BINCL 0x82 @@ -1510,6 +1512,10 @@ BOOL stabs_parse(struct module* module, unsigned long load_offset, case N_MAIN: /* Always ignore these. GCC doesn't even generate them. */ break; + case N_BNSYM: + case N_ENSYM: + /* Always ignore these, they seem to be used only on Darwin. */ + break; default: ERR("Unknown stab type 0x%02x\n", stab_ptr->n_type); break; -- 2.11.4.GIT