diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 905d2bddc4..83c3171acf 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2012-09-25 Joel Brobecker + + * symtab.c (skip_prologue_sal): Fix typo in comment. + 2012-09-25 Joel Brobecker * linespec.c (create_sals_line_offset): Fix typo in comment. diff --git a/gdb/symtab.c b/gdb/symtab.c index 183e115712..cbfe4d07af 100644 --- a/gdb/symtab.c +++ b/gdb/symtab.c @@ -2810,7 +2810,7 @@ skip_prologue_sal (struct symtab_and_line *sal) struct block *b, *function_block; int force_skip, skip; - /* Do not change the SAL is PC was specified explicitly. */ + /* Do not change the SAL if PC was specified explicitly. */ if (sal->explicit_pc) return;