diff options
author | Doug Evans <dje@google.com> | 2013-02-11 22:44:23 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2013-02-11 22:44:23 +0000 |
commit | e12f57abf54759a451eaf3952f3e45aee821efe9 (patch) | |
tree | 37654549bfd8c0b25c54607d168fb2c5c9ad5149 /gdb/printcmd.c | |
parent | 9c3f90c430f91f0a420c01c2bc3c54c274a59012 (diff) | |
download | gdb-e12f57abf54759a451eaf3952f3e45aee821efe9.zip gdb-e12f57abf54759a451eaf3952f3e45aee821efe9.tar.gz gdb-e12f57abf54759a451eaf3952f3e45aee821efe9.tar.bz2 |
(printf_c_string): Fix thinko in comment.
(printf_wide_c_string): Ditto.
Diffstat (limited to 'gdb/printcmd.c')
-rw-r--r-- | gdb/printcmd.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gdb/printcmd.c b/gdb/printcmd.c index 9092f09..155703d 100644 --- a/gdb/printcmd.c +++ b/gdb/printcmd.c @@ -1980,7 +1980,7 @@ print_variable_and_value (const char *name, struct symbol *var, /* Subroutine of ui_printf to simplify it. Print VALUE to STREAM using FORMAT. - VALUE is either a C-style string on the target, or an internal variable. */ + VALUE is a C-style string on the target. */ static void printf_c_string (struct ui_file *stream, const char *format, @@ -2014,8 +2014,7 @@ printf_c_string (struct ui_file *stream, const char *format, /* Subroutine of ui_printf to simplify it. Print VALUE to STREAM using FORMAT. - VALUE is either a wide C-style string on the target, - or an internal variable. */ + VALUE is a wide C-style string on the target. */ static void printf_wide_c_string (struct ui_file *stream, const char *format, |