winedump: Handling of S_SALIGN symbols.

This commit is contained in:
Eric Pouech 2007-01-05 21:43:00 +01:00 committed by Alexandre Julliard
parent 8a68e46953
commit b675ac3919

View file

@ -1158,6 +1158,10 @@ int codeview_dump_symbols(const void* root, unsigned long size)
}
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, " ");