Module: wine Branch: master Commit: 2f98c59adbc3f72b074d4a263e28a573df53423b URL: http://source.winehq.org/git/wine.git/?a=commit;h=2f98c59adbc3f72b074d4a263e...
Author: Eric Pouech eric.pouech@orange.fr Date: Sat Sep 6 22:20:13 2008 +0200
dbghelp: Silence 0x112c symbol type.
---
dlls/dbghelp/msc.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/dlls/dbghelp/msc.c b/dlls/dbghelp/msc.c index da6c710..1a28091 100644 --- a/dlls/dbghelp/msc.c +++ b/dlls/dbghelp/msc.c @@ -1746,6 +1746,10 @@ static int codeview_snarf(const struct msc_debug_info* msc_dbg, const BYTE* root TRACE("S-Align V1\n"); break;
+ case 0x112c: + TRACE("Unsupported symbol id %x\n", sym->generic.id); + break; + default: FIXME("Unsupported symbol id %x\n", sym->generic.id); dump(sym, 2 + sym->generic.len);