aboutsummaryrefslogtreecommitdiff
path: root/gdb/windows-nat.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@adacore.com>2022-07-22 10:56:44 -0600
committerTom Tromey <tromey@adacore.com>2022-07-22 10:58:11 -0600
commit36da255e7c6a37b17492361d91001e23263c05c6 (patch)
treeddaaa75c374d70099517c0d4756729ba5f9f83fe /gdb/windows-nat.c
parent9083a323bc7f7bfbff754e2ce93a3940608e09a2 (diff)
downloadfsf-binutils-gdb-36da255e7c6a37b17492361d91001e23263c05c6.zip
fsf-binutils-gdb-36da255e7c6a37b17492361d91001e23263c05c6.tar.gz
fsf-binutils-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.c2
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");