Use warning in windows-nat error messages
authorTom Tromey <tom@tromey.com>
Sun, 26 Dec 2021 21:21:28 +0000 (14:21 -0700)
committerTom Tromey <tom@tromey.com>
Thu, 6 Jan 2022 15:37:19 +0000 (08:37 -0700)
A warning in windows-nat.c can be converted to use the warning
function.  As a side effect, this arranges for the output to be sent
to gdb_stderr.

gdb/windows-nat.c

index 03447e0922a7a24a907e38e8a4c937ea981df182..47760b7b8b88713995f6f0f06fe347173d75b2dc 100644 (file)
@@ -1905,11 +1905,8 @@ windows_nat_target::attach (const char *args, int from_tty)
   pid = parse_pid_to_attach (args);
 
   if (set_process_privilege (SE_DEBUG_NAME, TRUE) < 0)
-    {
-      printf_unfiltered ("Warning: Failed to get SE_DEBUG_NAME privilege\n");
-      printf_unfiltered ("This can cause attach to "
-                        "fail on Windows NT/2K/XP\n");
-    }
+    warning ("Failed to get SE_DEBUG_NAME privilege\n"
+            "This can cause attach to fail on Windows NT/2K/XP");
 
   windows_init_thread_list ();
   ok = DebugActiveProcess (pid);