From patchwork Sat Dec 19 03:36:24 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joel Brobecker X-Patchwork-Id: 10069 Received: (qmail 45933 invoked by alias); 19 Dec 2015 03:36:39 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 45920 invoked by uid 89); 19 Dec 2015 03:36:38 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.7 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_LOW, SPF_PASS, T_RP_MATCHES_RCVD, UNWANTED_LANGUAGE_BODY autolearn=ham version=3.3.2 spammy=2015-12-19, 20151219, night X-HELO: rock.gnat.com Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Sat, 19 Dec 2015 03:36:36 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id 104D2116867 for ; Fri, 18 Dec 2015 22:36:35 -0500 (EST) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 8O6MNUbg3ZtZ for ; Fri, 18 Dec 2015 22:36:35 -0500 (EST) Received: from joel.gnat.com (localhost.localdomain [127.0.0.1]) by rock.gnat.com (Postfix) with ESMTP id A5087116853 for ; Fri, 18 Dec 2015 22:36:34 -0500 (EST) Received: by joel.gnat.com (Postfix, from userid 1000) id BEB31406CD; Sat, 19 Dec 2015 07:36:25 +0400 (RET) From: Joel Brobecker To: gdb-patches@sourceware.org Subject: [ARI/pushed] Fix ARI warning in gdb/arch/arm-get-next-pcs.c Date: Sat, 19 Dec 2015 07:36:24 +0400 Message-Id: <1450496184-23098-1-git-send-email-brobecker@adacore.com> Hello, Just one tiny little change, fixing an ARI violation that was just reported yesterday night. gdb/ChangeLog: * arch/arm-get-next-pcs.c (arm_get_next_pcs_raw): Remove trailing newline at end of error message. Pushed as obvious. Thanks, 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 + + * arch/arm-get-next-pcs.c (arm_get_next_pcs_raw): Remove trailing + newline at end of error message. + 2015-12-18 Sandra Loosemore * 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; } }