aboutsummaryrefslogtreecommitdiff
path: root/gdb/inline-frame.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/inline-frame.c')
-rw-r--r--gdb/inline-frame.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/inline-frame.c b/gdb/inline-frame.c
index 9465a99..7554fc7 100644
--- a/gdb/inline-frame.c
+++ b/gdb/inline-frame.c
@@ -126,7 +126,9 @@ clear_inline_frame_state (ptid_t ptid)
VEC (inline_state_s) *new_states = NULL;
int pid = ptid_get_pid (ptid);
- for (ix = 0; VEC_iterate (inline_state_s, inline_states, ix, state); ix++)
+ for (ix = 0;
+ VEC_iterate (inline_state_s, inline_states, ix, state);
+ ix++)
if (pid != ptid_get_pid (state->ptid))
VEC_safe_push (inline_state_s, new_states, state);
VEC_free (inline_state_s, inline_states);