diff options
author | Joel Brobecker <brobecker@adacore.com> | 2015-12-19 07:28:41 +0400 |
---|---|---|
committer | Joel Brobecker <brobecker@adacore.com> | 2015-12-19 07:28:41 +0400 |
commit | e7826da33d884c21bd1a036e71fe1002fae76ce4 (patch) | |
tree | acfc45752fa41de4136e33147255fa1d634f51dc /gdb/arch | |
parent | bc008695f5f9c72d2eac80d5dc125659ca106fad (diff) | |
download | gdb-e7826da33d884c21bd1a036e71fe1002fae76ce4.zip gdb-e7826da33d884c21bd1a036e71fe1002fae76ce4.tar.gz gdb-e7826da33d884c21bd1a036e71fe1002fae76ce4.tar.bz2 |
Fix ARI warning in gdb/arch/arm-get-next-pcs.c
gdb/ChangeLog:
* arch/arm-get-next-pcs.c (arm_get_next_pcs_raw): Remove trailing
newline at end of error message.
Diffstat (limited to 'gdb/arch')
-rw-r--r-- | gdb/arch/arm-get-next-pcs.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } } |