diff options
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/arch/arm-get-next-pcs.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index b006ba8..c3245e4 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2015-12-19 Joel Brobecker <brobecker@adacore.com> + + * arch/arm-get-next-pcs.c (arm_get_next_pcs_raw): Remove trailing + newline at end of error message. + 2015-12-18 Sandra Loosemore <sandra@codesourcery.com> * event-top.c (command_handler): Don't require stdin to be a tty diff --git a/gdb/arch/arm-get-next-pcs.c b/gdb/arch/arm-get-next-pcs.c index 59ea228..de578b5 100644 --- a/gdb/arch/arm-get-next-pcs.c +++ b/gdb/arch/arm-get-next-pcs.c @@ -916,7 +916,7 @@ arm_get_next_pcs_raw (struct arm_get_next_pcs *self, break; default: - error (_("Bad bit-field extraction\n")); + error (_("Bad bit-field extraction")); return next_pcs; } } |