forked from Imagelibrary/binutils-gdb
* top.c (get_prompt_1), tracepoint.c (replace_comma): Update
function signatures so that they match catch_errors and make_cleanup callbacks. * tracepoint.c (encode_actions): Fix arguments passed to stringify_collection_list.
This commit is contained in:
@@ -1625,8 +1625,8 @@ encode_actions (struct tracepoint *t, char ***tdp_actions,
|
||||
memrange_sortmerge (&tracepoint_list);
|
||||
memrange_sortmerge (&stepping_list);
|
||||
|
||||
*tdp_actions = stringify_collection_list (&tracepoint_list, &tdp_buff);
|
||||
*stepping_actions = stringify_collection_list (&stepping_list, &step_buff);
|
||||
*tdp_actions = stringify_collection_list (&tracepoint_list, tdp_buff);
|
||||
*stepping_actions = stringify_collection_list (&stepping_list, step_buff);
|
||||
}
|
||||
|
||||
static void
|
||||
@@ -2445,8 +2445,9 @@ scope_info (char *args, int from_tty)
|
||||
|
||||
/* worker function (cleanup) */
|
||||
static void
|
||||
replace_comma (char *comma)
|
||||
replace_comma (void *data)
|
||||
{
|
||||
char *comma = data;
|
||||
*comma = ',';
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user