summaryrefslogtreecommitdiff
path: root/gdb/cli/cli-cmds.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2005-05-27 04:39:33 +0000
committerAndrew Cagney <cagney@redhat.com>2005-05-27 04:39:33 +0000
commitaac7223f626eccb234973d0d4ed75f9865c11724 (patch)
treec6f0cf70d0afb5ec15060973323ffe047a244548 /gdb/cli/cli-cmds.c
parente8fca2c4658e594774bd6a01cdfb7ff27fd31140 (diff)
downloadgdb-aac7223f626eccb234973d0d4ed75f9865c11724.tar.gz
2005-05-27 Andrew Cagney <cagney@gnu.org>
* jv-lang.c (get_java_utf8_name): Add cast. (evaluate_subexp_java): Use gdb_byte for buffers. * jv-valprint.c (java_value_print, java_value_print): Use gdb_byte for buffers. * scm-lang.c (scm_get_field, scm_unpack) (scm_evaluate_string): Use gdb_byte for buffers. (scm_lookup_name): Add cast. * scm-valprint.c (scm_scmval_print, scm_scmval_print): Use gdb_byte for buffers. * tui/tui.h (tui_get_command_dimension): Make parameters unsigned. * tui/tui.c (tui_get_command_dimension): Make parameters unsigned. * value.h (check_field): Change "name" to a string. * valops.c (check_field): Change "name" to a string. * scm-lang.h (scm_parse): Use gdb_byte for buffers. * source.c (get_current_source_symtab_and_line) (set_current_source_symtab_and_line): Initialize all fields of sal structures. * cli/cli-cmds.c (list_command): Use gdb_byte for buffers.
Diffstat (limited to 'gdb/cli/cli-cmds.c')
-rw-r--r--gdb/cli/cli-cmds.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/cli/cli-cmds.c b/gdb/cli/cli-cmds.c
index af110961db9..aaba486ed33 100644
--- a/gdb/cli/cli-cmds.c
+++ b/gdb/cli/cli-cmds.c
@@ -650,7 +650,9 @@ static void
list_command (char *arg, int from_tty)
{
struct symtabs_and_lines sals, sals_end;
- struct symtab_and_line sal, sal_end, cursal;
+ struct symtab_and_line sal = { };
+ struct symtab_and_line sal_end = { };
+ struct symtab_and_line cursal = { };
struct symbol *sym;
char *arg1;
int no_end = 1;