diff options
author | Andrew Cagney <cagney@redhat.com> | 2000-05-22 05:43:39 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2000-05-22 05:43:39 +0000 |
commit | e41a3b1ac564de74a9c4e995266680e04cd3e797 (patch) | |
tree | c8a4d23bf689b95af2bdbb1148f40b8f4c00585a /gdb/event-top.c | |
parent | 5683e87aa5680099320f4900de6ec7edc99d9f5d (diff) | |
download | binutils-gdb-e41a3b1ac564de74a9c4e995266680e04cd3e797.tar.gz |
Eliminate make_cleanup_func from top.c
Diffstat (limited to 'gdb/event-top.c')
-rw-r--r-- | gdb/event-top.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/event-top.c b/gdb/event-top.c index 622b70f020d..34bf5dffc8c 100644 --- a/gdb/event-top.c +++ b/gdb/event-top.c @@ -487,7 +487,7 @@ command_handler (char *command) quit_flag = 0; if (instream == stdin && stdin_is_tty) reinitialize_more_filter (); - old_chain = make_cleanup ((make_cleanup_func) command_loop_marker, 0); + old_chain = make_cleanup (command_loop_marker, 0); #if defined(TUI) insert_mode = 0; |