Module: wine Branch: master Commit: b675ac3919b1252e032fb54b858c4e0ec1ccf701 URL: http://source.winehq.org/git/wine.git/?a=commit;h=b675ac3919b1252e032fb54b85...
Author: Eric Pouech eric.pouech@wanadoo.fr Date: Fri Jan 5 21:43:00 2007 +0100
winedump: Handling of S_SALIGN symbols.
---
tools/winedump/msc.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/tools/winedump/msc.c b/tools/winedump/msc.c index d423d09..a516afb 100644 --- a/tools/winedump/msc.c +++ b/tools/winedump/msc.c @@ -1158,6 +1158,10 @@ int codeview_dump_symbols(const void* ro } break;
+ case S_ALIGN_V1: + /* simply skip it */ + break; + default: printf(">>> Unsupported symbol-id %x sz=%d\n", sym->generic.id, sym->generic.len + 2); dump_data((const void*)sym, sym->generic.len + 2, " ");