forked from Imagelibrary/binutils-gdb
2006-05-15 Peter O'Gorman <gdb-patches@mlists.thewrittenword.com>
* source.c (get_current_source_symtab_and_line)
(set_current_source_symtab_and_line): Use { 0 }.
* cli/cli-cmds.c (list_command): Likewise.
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2006-05-15 Peter O'Gorman <gdb-patches@mlists.thewrittenword.com>
|
||||
|
||||
* source.c (get_current_source_symtab_and_line)
|
||||
(set_current_source_symtab_and_line): Use { 0 }.
|
||||
* cli/cli-cmds.c (list_command): Likewise.
|
||||
|
||||
2006-05-14 Nick Roberts <nickrob@snap.net.nz>
|
||||
|
||||
* mi/gdb-mi.el (gdbmi-send): Correct regexp for repeat commands.
|
||||
|
||||
@@ -667,9 +667,9 @@ static void
|
||||
list_command (char *arg, int from_tty)
|
||||
{
|
||||
struct symtabs_and_lines sals, sals_end;
|
||||
struct symtab_and_line sal = { };
|
||||
struct symtab_and_line sal_end = { };
|
||||
struct symtab_and_line cursal = { };
|
||||
struct symtab_and_line sal = { 0 };
|
||||
struct symtab_and_line sal_end = { 0 };
|
||||
struct symtab_and_line cursal = { 0 };
|
||||
struct symbol *sym;
|
||||
char *arg1;
|
||||
int no_end = 1;
|
||||
|
||||
@@ -139,7 +139,7 @@ get_lines_to_list (void)
|
||||
struct symtab_and_line
|
||||
get_current_source_symtab_and_line (void)
|
||||
{
|
||||
struct symtab_and_line cursal = { };
|
||||
struct symtab_and_line cursal = { 0 };
|
||||
|
||||
cursal.symtab = current_source_symtab;
|
||||
cursal.line = current_source_line;
|
||||
@@ -178,7 +178,7 @@ set_default_source_symtab_and_line (void)
|
||||
struct symtab_and_line
|
||||
set_current_source_symtab_and_line (const struct symtab_and_line *sal)
|
||||
{
|
||||
struct symtab_and_line cursal = { };
|
||||
struct symtab_and_line cursal = { 0 };
|
||||
|
||||
cursal.symtab = current_source_symtab;
|
||||
cursal.line = current_source_line;
|
||||
|
||||
Reference in New Issue
Block a user