diff options
author | Yao Qi <yao@codesourcery.com> | 2013-05-30 09:29:18 +0000 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2013-05-30 09:29:18 +0000 |
commit | 23da373ae118adcb2d5cc1328c285e4df6b984bb (patch) | |
tree | 60668c2feb5fa60c378b06e22a320e2820034554 /gdb/remote.c | |
parent | a6e6f79133abe7ca865a0fabbebf70aa439745be (diff) | |
download | gdb-23da373ae118adcb2d5cc1328c285e4df6b984bb.zip gdb-23da373ae118adcb2d5cc1328c285e4df6b984bb.tar.gz gdb-23da373ae118adcb2d5cc1328c285e4df6b984bb.tar.bz2 |
gdb/
* tracepoint.c (encode_actions_1): Remove parameter 't'.
Caller update.
(encode_actions): Likewise.
* remote.c (remote_download_tracepoint): Caller update.
* tracepoint.h (encode_actions): Update declaration.
Diffstat (limited to 'gdb/remote.c')
-rw-r--r-- | gdb/remote.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/remote.c b/gdb/remote.c index b96b381..d8854ae 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -10506,7 +10506,7 @@ remote_download_tracepoint (struct bp_location *loc) struct breakpoint *b = loc->owner; struct tracepoint *t = (struct tracepoint *) b; - encode_actions (loc->owner, loc, &tdp_actions, &stepping_actions); + encode_actions (loc, &tdp_actions, &stepping_actions); old_chain = make_cleanup (free_actions_list_cleanup_wrapper, tdp_actions); (void) make_cleanup (free_actions_list_cleanup_wrapper, |