From: Joel Brobecker Date: Wed, 30 May 2018 23:43:02 +0000 (-0700) Subject: (ARI) remove trailing newline in call to error in stack.c::func_command X-Git-Tag: binutils-2_31~292 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=61367c61574e4d1f422e0f560672c4e63116fd7a;p=external%2Fbinutils.git (ARI) remove trailing newline in call to error in stack.c::func_command gdb/ChangeLog: * stack.c (func_command): Remove trailing newline in call to error. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index ddb9277..f8f1acd 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2018-05-30 Joel Brobecker + + * stack.c (func_command): Remove trailing newline in call to error. + 2018-05-30 Simon Marchi * regcache.h (regcache_raw_collect): Remove, update callers to diff --git a/gdb/stack.c b/gdb/stack.c index bfd9653..97ebc8b 100644 --- a/gdb/stack.c +++ b/gdb/stack.c @@ -2486,7 +2486,7 @@ func_command (const char *arg, int from_tty) struct frame_info *frame = find_frame_for_function (arg); if (frame == NULL) - error (_("'%s' not within current stack frame.\n"), arg); + error (_("'%s' not within current stack frame."), arg); if (frame != get_selected_frame (NULL)) { select_frame (frame);