diff options
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/tracepoint.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8dcbd1a..f8001b6 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2010-10-28 Hui Zhu <teawater@gmail.com> + + * tracepoint.c (trace_save): Change utp->actions to + utp->step_actions. + 2010-10-26 Joel Brobecker <brobecker@adacore.com> * (_FILE_OFFSET_BITS): Fix typo in comment. diff --git a/gdb/tracepoint.c b/gdb/tracepoint.c index 93fb5db..58fc8d4 100644 --- a/gdb/tracepoint.c +++ b/gdb/tracepoint.c @@ -2734,7 +2734,7 @@ trace_save (const char *filename, int target_does_save) for (a = 0; VEC_iterate (char_ptr, utp->actions, a, act); ++a) fprintf (fp, "tp A%x:%s:%s\n", utp->number, phex_nz (utp->addr, sizeof (utp->addr)), act); - for (a = 0; VEC_iterate (char_ptr, utp->actions, a, act); ++a) + for (a = 0; VEC_iterate (char_ptr, utp->step_actions, a, act); ++a) fprintf (fp, "tp S%x:%s:%s\n", utp->number, phex_nz (utp->addr, sizeof (utp->addr)), act); if (utp->at_string) |