aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authoroltolm <oleg.tolmatcev@gmail.com>2024-12-14 13:12:01 +0100
committerTom Tromey <tom@tromey.com>2024-12-14 09:23:20 -0700
commitea17b82b2d5658bc622d10864aa750469071182c (patch)
treea407bd4434cb74de9d11159167d593dd6ceb2cfa /gdb
parentd05b8f01800910c692db8c7537389358d50d9057 (diff)
downloadgdb-ea17b82b2d5658bc622d10864aa750469071182c.zip
gdb-ea17b82b2d5658bc622d10864aa750469071182c.tar.gz
gdb-ea17b82b2d5658bc622d10864aa750469071182c.tar.bz2
fix Windows build
Fix the Windows build that was broken in "Introduce \"command\" styling". Approved-By: Tom Tromey <tom@tromey.com>
Diffstat (limited to 'gdb')
-rw-r--r--gdb/windows-nat.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/windows-nat.c b/gdb/windows-nat.c
index 828334e..a93e546 100644
--- a/gdb/windows-nat.c
+++ b/gdb/windows-nat.c
@@ -53,6 +53,7 @@
#include "gdbsupport/gdb_obstack.h"
#include "gdbthread.h"
#include "cli/cli-cmds.h"
+#include "cli/cli-style.h"
#include <unistd.h>
#include "exec.h"
#include "solist.h"
@@ -3190,7 +3191,7 @@ Show whether to display kernel exceptions in child process."), NULL,
that we're missing some functionality. */
warning(_("\
cannot automatically find executable file or library to read symbols.\n\
-Use \"%ps\" or \"%ps\" command to load executable/libraries directly.")
+Use \"%ps\" or \"%ps\" command to load executable/libraries directly."),
styled_string (command_style.style (), "file"),
styled_string (command_style.style (), "dll"));
}