diff options
Diffstat (limited to 'gdb/infcmd.c')
-rw-r--r-- | gdb/infcmd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/infcmd.c b/gdb/infcmd.c index e29dcde..0659605 100644 --- a/gdb/infcmd.c +++ b/gdb/infcmd.c @@ -2408,7 +2408,7 @@ attach_command_post_wait (char *args, int from_tty, int async_exec) exec_file = (char *) get_exec_file (0); if (!exec_file) { - exec_file = target_pid_to_exec_file (PIDGET (inferior_ptid)); + exec_file = target_pid_to_exec_file (ptid_get_pid (inferior_ptid)); if (exec_file) { /* It's possible we don't have a full path, but rather just a @@ -2433,7 +2433,7 @@ attach_command_post_wait (char *args, int from_tty, int async_exec) } /* Take any necessary post-attaching actions for this platform. */ - target_post_attach (PIDGET (inferior_ptid)); + target_post_attach (ptid_get_pid (inferior_ptid)); post_create_inferior (¤t_target, from_tty); |