Module: wine Branch: master Commit: 76d97b6e8e4b5831f2cb0e564f6560c4806c8a39 URL: https://gitlab.winehq.org/wine/wine/-/commit/76d97b6e8e4b5831f2cb0e564f6560c...
Author: Eric Pouech eric.pouech@gmail.com Date: Tue Sep 13 16:25:13 2022 +0200
winedump: Print signed integers with %d.
Signed-off-by: Eric Pouech eric.pouech@gmail.com
---
tools/winedump/msc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/winedump/msc.c b/tools/winedump/msc.c index b5708017651..561d3ca98ca 100644 --- a/tools/winedump/msc.c +++ b/tools/winedump/msc.c @@ -1284,7 +1284,7 @@ static void dump_binannot(const unsigned char* ba, const char* last, unsigned in case BA_OP_ChangeCodeOffsetAndLineOffset: { 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; case BA_OP_ChangeCodeLengthAndCodeOffset: