OSDN Git Service

* win32-nat.c (cygwin_pid_to_str): Revert 2002-02-08 change xasprintf changes.
authorcgf <cgf>
Fri, 8 Feb 2002 23:12:16 +0000 (23:12 +0000)
committercgf <cgf>
Fri, 8 Feb 2002 23:12:16 +0000 (23:12 +0000)
(_initialize_check_for_gdb_ini): Ditto.

gdb/ChangeLog
gdb/win32-nat.c

index 4786375..311e0fd 100644 (file)
@@ -1,3 +1,9 @@
+2002-02-08  Christopher Faylor  <cgf@redhat.com>
+
+       * win32-nat.c (cygwin_pid_to_str): Revert 2002-02-08 change xasprintf
+       changes.
+       (_initialize_check_for_gdb_ini): Ditto.
+
 2002-02-08  Martin M. Hunt  <hunt@redhat.com>
 
        * win32-nat.c (cygwin_pid_to_str): Fix typo.
index fa0d0b4..dcc3d33 100644 (file)
@@ -1763,9 +1763,9 @@ cygwin_pid_to_str (ptid_t ptid)
   int pid = PIDGET (ptid);
 
   if ((DWORD) pid == current_event.dwProcessId)
-    xasprintf (buf, "process %d", pid);
+    sprintf (buf, "process %d", pid);
   else
-    xasprintf (buf, "thread %ld.0x%x", current_event.dwProcessId, pid);
+    sprintf (buf, "thread %ld.0x%x", current_event.dwProcessId, pid);
   return buf;
 }
 
@@ -2009,7 +2009,7 @@ _initialize_check_for_gdb_ini (void)
        {
          int len = strlen (oldini);
          char *newini = alloca (len + 1);
-         xasprintf (newini, "%.*s.gdbinit", 
+         sprintf (newini, "%.*s.gdbinit", 
            (int) (len - (sizeof ("gdb.ini") - 1)), oldini);
          warning ("obsolete '%s' found. Rename to '%s'.", oldini, newini);
        }