diff options
author | Andrew Cagney <cagney@redhat.com> | 2000-05-26 06:15:49 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2000-05-26 06:15:49 +0000 |
commit | fbc75a324a681f9cfc18433e0ab53da21913ad07 (patch) | |
tree | c7c7dff73e1d1134780e417669907280c524bbd6 /gdb | |
parent | 2894793a7b11779557cd7d50f5eec63acf3c46fd (diff) | |
download | gdb-fbc75a324a681f9cfc18433e0ab53da21913ad07.zip gdb-fbc75a324a681f9cfc18433e0ab53da21913ad07.tar.gz gdb-fbc75a324a681f9cfc18433e0ab53da21913ad07.tar.bz2 |
Fix bitrot in tui-file.c.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/tui/ChangeLog | 7 | ||||
-rw-r--r-- | gdb/tui/tui-file.c | 11 |
2 files changed, 16 insertions, 2 deletions
diff --git a/gdb/tui/ChangeLog b/gdb/tui/ChangeLog index d7e8629..d492a9d 100644 --- a/gdb/tui/ChangeLog +++ b/gdb/tui/ChangeLog @@ -1,3 +1,10 @@ +Thu May 25 14:46:20 2000 Andrew Cagney <cagney@b1.cygnus.com> + + * tui-file.c: Include "tui.h", "tuiData.h", "tuiIO.h" and + "tuiCommand.h". + (tui_file_fputs): Pass ``file'' and not ``stream'' to + tui_file_adjust_strbuf. + Thu May 25 16:58:01 2000 Andrew Cagney <cagney@b1.cygnus.com> * tui.h: Include <ncurses.h> when available. diff --git a/gdb/tui/tui-file.c b/gdb/tui/tui-file.c index 7822108..9bb2844 100644 --- a/gdb/tui/tui-file.c +++ b/gdb/tui/tui-file.c @@ -22,6 +22,13 @@ #include "ui-file.h" #include "tui/tui-file.h" +#ifdef TUI +#include "tui.h" +#include "tuiData.h" +#include "tuiIO.h" +#include "tuiCommand.h" +#endif + #include <string.h> /* Called instead of fputs for all TUI_FILE output. */ @@ -196,7 +203,7 @@ tui_file_fputs (linebuffer, file) if (stream->ts_streamtype == astring) { - tui_file_adjust_strbuf (strlen (linebuffer), stream); + tui_file_adjust_strbuf (strlen (linebuffer), file); strcat (stream->ts_strbuf, linebuffer); } else @@ -215,7 +222,7 @@ tui_file_fputs (linebuffer, file) /* The normal case - just do a fputs() */ if (stream->ts_streamtype == astring) { - tui_file_adjust_strbuf (strlen (linebuffer), stream); + tui_file_adjust_strbuf (strlen (linebuffer), file); strcat (stream->ts_strbuf, linebuffer); } else |