Fix wrong format specification in display_selector()
There are a wrong format strings in function display_selector() in file windows-nat.c. This leads to build error using Cygwin on Windows. LDT_ENTRY.HighWord is a DWORD, which is unsigned long int, so the format specification should be for long int, not simply int. gdb/ChangeLog: 2019-03-17 Vladimir Martyanov <vilgeforce@gmail.com> PR gdb/24351 * windows-nat.c (display_selector): Format specifications fixed
This commit is contained in:
parent
f7f0a12390
commit
fce4c07161
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2019-03-17 Vladimir Martyanov <vilgeforce@gmail.com>
|
||||
|
||||
PR gdb/24351
|
||||
* windows-nat.c (display_selector): Fix format specifiers.
|
||||
|
||||
2019-03-17 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* tui/tui-winsource.c (tui_set_is_exec_point_at): Call
|
||||
|
|
|
@ -1097,14 +1097,14 @@ display_selector (HANDLE thread, DWORD sel)
|
|||
puts_filtered ("Code (Exec/Read, Conf");
|
||||
break;
|
||||
default:
|
||||
printf_filtered ("Unknown type 0x%x",info.HighWord.Bits.Type);
|
||||
printf_filtered ("Unknown type 0x%lx",info.HighWord.Bits.Type);
|
||||
}
|
||||
if ((info.HighWord.Bits.Type & 0x1) == 0)
|
||||
puts_filtered(", N.Acc");
|
||||
puts_filtered (")\n");
|
||||
if ((info.HighWord.Bits.Type & 0x10) == 0)
|
||||
puts_filtered("System selector ");
|
||||
printf_filtered ("Priviledge level = %d. ", info.HighWord.Bits.Dpl);
|
||||
printf_filtered ("Priviledge level = %ld. ", info.HighWord.Bits.Dpl);
|
||||
if (info.HighWord.Bits.Granularity)
|
||||
puts_filtered ("Page granular.\n");
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue