summaryrefslogtreecommitdiff
path: root/gdb/source.c
diff options
context:
space:
mode:
authorDaniel Jacobowitz <dan@debian.org>2006-05-15 15:50:14 +0000
committerDaniel Jacobowitz <dan@debian.org>2006-05-15 15:50:14 +0000
commitaf3c45d4b9e6454d62e28c909e9172ffeb09e3c8 (patch)
tree30bd05c83b9b26c4a809b49007479bdeb885793a /gdb/source.c
parent8829c37142949e8c2473a654f15f1200c838b477 (diff)
downloadgdb-af3c45d4b9e6454d62e28c909e9172ffeb09e3c8.tar.gz
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.
Diffstat (limited to 'gdb/source.c')
-rw-r--r--gdb/source.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/source.c b/gdb/source.c
index 927601d3df3..800491959d5 100644
--- a/gdb/source.c
+++ b/gdb/source.c
@@ -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;