Remove ptid_build
[deliverable/binutils-gdb.git] / gdb / gdbserver / remote-utils.c
index 967b2f0ebb6d019710b96a62ec8c032277e5ea6a..a1a06dcdf5f7777946051ec580a9f74962bc2ff2 100644 (file)
@@ -542,7 +542,7 @@ read_ptid (const char *buf, const char **obuf)
 
       if (obuf)
        *obuf = pp;
-      return ptid_build (pid, tid, 0);
+      return ptid_t (pid, tid, 0);
     }
 
   /* No multi-process.  Just a tid.  */
@@ -555,7 +555,7 @@ read_ptid (const char *buf, const char **obuf)
 
   if (obuf)
     *obuf = pp;
-  return ptid_build (pid, tid, 0);
+  return ptid_t (pid, tid, 0);
 }
 
 /* Write COUNT bytes in BUF to the client.
This page took 0.024925 seconds and 4 git commands to generate.