diff options
author | Tom Tromey <tromey@adacore.com> | 2022-07-22 10:56:44 -0600 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2022-07-22 10:58:11 -0600 |
commit | 36da255e7c6a37b17492361d91001e23263c05c6 (patch) | |
tree | ddaaa75c374d70099517c0d4756729ba5f9f83fe /gdb/windows-nat.c | |
parent | 9083a323bc7f7bfbff754e2ce93a3940608e09a2 (diff) | |
download | gdb-36da255e7c6a37b17492361d91001e23263c05c6.zip gdb-36da255e7c6a37b17492361d91001e23263c05c6.tar.gz gdb-36da255e7c6a37b17492361d91001e23263c05c6.tar.bz2 |
Fix typo in windows-nat.c
I noticed a typo in a printf in windows-nat.c. This fixes it.
Diffstat (limited to 'gdb/windows-nat.c')
-rw-r--r-- | gdb/windows-nat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/windows-nat.c b/gdb/windows-nat.c index b62d216..43a2c11 100644 --- a/gdb/windows-nat.c +++ b/gdb/windows-nat.c @@ -959,7 +959,7 @@ display_selector (HANDLE thread, DWORD sel) gdb_puts (")\n"); if ((info.HighWord.Bits.Type & 0x10) == 0) gdb_puts("System selector "); - gdb_printf ("Priviledge level = %ld. ", + gdb_printf ("Privilege level = %ld. ", (unsigned long) info.HighWord.Bits.Dpl); if (info.HighWord.Bits.Granularity) gdb_puts ("Page granular.\n"); |