Commit 76d97b6e authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

winedump: Print signed integers with %d.

parent 47b27503
...@@ -1284,7 +1284,7 @@ static void dump_binannot(const unsigned char* ba, const char* last, unsigned in ...@@ -1284,7 +1284,7 @@ static void dump_binannot(const unsigned char* ba, const char* last, unsigned in
case BA_OP_ChangeCodeOffsetAndLineOffset: case BA_OP_ChangeCodeOffsetAndLineOffset:
{ {
unsigned p1 = binannot_uncompress(&ba); unsigned p1 = binannot_uncompress(&ba);
printf("%*s | ChangeCodeOffsetAndLineOffset %u %u (0x%x)\n", indent, "", p1 & 0xf, binannot_getsigned(p1 >> 4), p1); printf("%*s | ChangeCodeOffsetAndLineOffset %u %d (0x%x)\n", indent, "", p1 & 0xf, binannot_getsigned(p1 >> 4), p1);
} }
break; break;
case BA_OP_ChangeCodeLengthAndCodeOffset: case BA_OP_ChangeCodeLengthAndCodeOffset:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment