diff options
author | Simon Marchi <simon.marchi@ericsson.com> | 2015-09-28 18:34:54 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@ericsson.com> | 2015-09-28 18:34:54 -0400 |
commit | 2181a6c6267eb62cc4feebb82a44907ae3c1ee2c (patch) | |
tree | 2e1e2e38d07087a67755496c126bd207b150bdf1 /gdb/cli | |
parent | c60eb31fb11129ee91b9f778b852f886db545381 (diff) | |
download | gdb-2181a6c6267eb62cc4feebb82a44907ae3c1ee2c.zip gdb-2181a6c6267eb62cc4feebb82a44907ae3c1ee2c.tar.gz gdb-2181a6c6267eb62cc4feebb82a44907ae3c1ee2c.tar.bz2 |
cli-script.c: Fix read_next_line's comment
It seems obvious to me that stdout should in fact be stdin.
gdb/ChangeLog:
* cli/cli-script.c (read_next_line): Fix stdout -> stdout in
comment.
Diffstat (limited to 'gdb/cli')
-rw-r--r-- | gdb/cli/cli-script.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/cli/cli-script.c b/gdb/cli/cli-script.c index 6a3c068..4d35db9 100644 --- a/gdb/cli/cli-script.c +++ b/gdb/cli/cli-script.c @@ -924,9 +924,9 @@ realloc_body_list (struct command_line *command, int new_length) command->body_count = new_length; } -/* Read next line from stdout. Passed to read_command_line_1 and +/* Read next line from stdin. Passed to read_command_line_1 and recurse_read_control_structure whenever we need to read commands - from stdout. */ + from stdin. */ static char * read_next_line (void) |