diff options
author | Martin Hunt <hunt@redhat.com> | 2002-02-08 21:22:10 +0000 |
---|---|---|
committer | Martin Hunt <hunt@redhat.com> | 2002-02-08 21:22:10 +0000 |
commit | a5e1adaa36a18f3015127bf9ab47d0c1e8df2e2e (patch) | |
tree | ea699d8d007f8dce9a09911f5c104b56d2217ed8 /gdb/win32-nat.c | |
parent | 674037e3f885f73560f049b75577f51c7f51a478 (diff) | |
download | gdb-a5e1adaa36a18f3015127bf9ab47d0c1e8df2e2e.tar.gz |
2002-02-08 Martin M. Hunt <hunt@redhat.com>
* win32-nat.c (cygwin_pid_to_str): Fix typo.
xaprintf -> xasprintf.
Diffstat (limited to 'gdb/win32-nat.c')
-rw-r--r-- | gdb/win32-nat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/win32-nat.c b/gdb/win32-nat.c index 08a8ddbab6f..fa0d0b418bb 100644 --- a/gdb/win32-nat.c +++ b/gdb/win32-nat.c @@ -1763,7 +1763,7 @@ cygwin_pid_to_str (ptid_t ptid) int pid = PIDGET (ptid); if ((DWORD) pid == current_event.dwProcessId) - xaprintf (buf, "process %d", pid); + xasprintf (buf, "process %d", pid); else xasprintf (buf, "thread %ld.0x%x", current_event.dwProcessId, pid); return buf; |