From: Joel Brobecker Date: Mon, 23 Feb 2009 03:07:14 +0000 (+0000) Subject: (tiny change) X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=6f43c46f4b7ae3ae4506773de7d41c61bd2be4fe;p=deliverable%2Fbinutils-gdb.git (tiny change) * symtab.c (find_line_symtab): Initialize exact to avoid a compiler warning. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f0de11f7a5..bcb4a50d5e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2009-02-23 Jay Krell (tiny change) + + * symtab.c (find_line_symtab): Initialize exact to avoid + a compiler warning. + 2009-02-23 Pedro Alves * i386-linux-nat.c (i386_linux_fetch_inferior_registers): Pass diff --git a/gdb/symtab.c b/gdb/symtab.c index 1ef92a8d91..d51c7aa6c2 100644 --- a/gdb/symtab.c +++ b/gdb/symtab.c @@ -2361,7 +2361,7 @@ find_pc_line (CORE_ADDR pc, int notcurrent) struct symtab * find_line_symtab (struct symtab *symtab, int line, int *index, int *exact_match) { - int exact; + int exact = 0; /* Initialized here to avoid a compiler warning. */ /* BEST_INDEX and BEST_LINETABLE identify the smallest linenumber > LINE so far seen. */