diff options
author | Andrew Cagney <cagney@redhat.com> | 2000-08-01 05:06:03 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2000-08-01 05:06:03 +0000 |
commit | 710b33bd11f6344967c225427e3bf392c9e155ce (patch) | |
tree | 9986d1ebaa8b7034fd85c32b8721e83ee1113f4b /gdb/top.c | |
parent | e3308d0d5be65e6c7300e6e7691fba0db54c83ef (diff) | |
download | gdb-710b33bd11f6344967c225427e3bf392c9e155ce.zip gdb-710b33bd11f6344967c225427e3bf392c9e155ce.tar.gz gdb-710b33bd11f6344967c225427e3bf392c9e155ce.tar.bz2 |
* 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.
Diffstat (limited to 'gdb/top.c')
-rw-r--r-- | gdb/top.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -3179,8 +3179,9 @@ show_version (char *args, int from_tty) static int gdb_prompt_escape; static int -get_prompt_1 (char *formatted_prompt) +get_prompt_1 (void *data) { + char *formatted_prompt = data; char *local_prompt; if (event_loop_p) |