diff options
Diffstat (limited to 'gdb/sol2-tdep.c')
-rw-r--r-- | gdb/sol2-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/sol2-tdep.c b/gdb/sol2-tdep.c index bf7d6a1..a508978 100644 --- a/gdb/sol2-tdep.c +++ b/gdb/sol2-tdep.c @@ -60,7 +60,7 @@ sol2_core_pid_to_str (struct gdbarch *gdbarch, ptid_t ptid) /* GDB didn't use to put a NT_PSTATUS note in Solaris cores. If that's missing, then we're dealing with a fake PID corelow.c made up. */ - inf = find_inferior_pid (ptid_get_pid (ptid)); + inf = find_inferior_ptid (ptid); if (inf == NULL || inf->fake_pid_p) { xsnprintf (buf, sizeof buf, "<core>"); |