Remove some uses of "object_files"
[deliverable/binutils-gdb.git] / gdb / obsd-nat.c
index e4c0d97b2398c0ae6f90a7b8ff8b040dee04bcf5..0a99bd021df6b2edfa8fe4bded96c1da6e0c3528 100644 (file)
@@ -24,7 +24,7 @@
 
 #include <sys/types.h>
 #include <sys/ptrace.h>
-#include "gdb_wait.h"
+#include "common/gdb_wait.h"
 
 #include "inf-child.h"
 #include "obsd-nat.h"
 
 #ifdef PT_GET_THREAD_FIRST
 
-const char *
+std::sring
 obsd_nat_target::pid_to_str (ptid_t ptid)
 {
   if (ptid.lwp () != 0)
-    {
-      static char buf[64];
-
-      xsnprintf (buf, sizeof buf, "thread %ld", ptid.lwp ());
-      return buf;
-    }
+    return string_printf ("thread %ld", ptid.lwp ());
 
   return normal_pid_to_str (ptid);
 }
This page took 0.024516 seconds and 4 git commands to generate.