* win32-nat.c (cygwin_pid_to_str): Fix typo.
xaprintf -> xasprintf.
+2002-02-08 Martin M. Hunt <hunt@redhat.com>
+
+ * win32-nat.c (cygwin_pid_to_str): Fix typo.
+ xaprintf -> xasprintf.
+
2002-02-08 Pierre Muller <muller@ics.u-strasbg.fr>
* win32-nat.c: Remove use of printf and sprintf functions.
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;
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;