* win32-nat.c (cygwin_pid_to_str): Revert 2002-02-08 change xasprintf changes.
(_initialize_check_for_gdb_ini): Ditto.
This commit is contained in:
parent
dc9ed0e9f1
commit
b69571f510
3 changed files with 12 additions and 6 deletions
|
@ -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.
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue