From: Hui Zhu Date: Thu, 28 Oct 2010 03:38:36 +0000 (+0000) Subject: 2010-10-28 Hui Zhu X-Git-Tag: binutils-2_21-branchpoint~89 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0a2a54b8b06bfacaab862b804ef33bf45d2a7714;p=platform%2Fupstream%2Fbinutils.git 2010-10-28 Hui Zhu * tracepoint.c (trace_save): Change utp->actions to utp->step_actions. --- 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 + + * tracepoint.c (trace_save): Change utp->actions to + utp->step_actions. + 2010-10-26 Joel Brobecker * (_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)