From patchwork Sat Nov 15 08:50:20 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yao Qi X-Patchwork-Id: 3758 Received: (qmail 14858 invoked by alias); 15 Nov 2014 08:50:43 -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 14848 invoked by uid 89); 15 Nov 2014 08:50:42 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.2 X-HELO: relay1.mentorg.com Received: from relay1.mentorg.com (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 15 Nov 2014 08:50:40 +0000 Received: from svr-orw-fem-06.mgc.mentorg.com ([147.34.97.120]) by relay1.mentorg.com with esmtp id 1XpZ41-00012g-Ei from Yao_Qi@mentor.com for gdb-patches@sourceware.org; Sat, 15 Nov 2014 00:50:37 -0800 Received: from qiyao.dyndns.org.com (147.34.91.1) by SVR-ORW-FEM-06.mgc.mentorg.com (147.34.97.120) with Microsoft SMTP Server id 14.3.181.6; Sat, 15 Nov 2014 00:50:36 -0800 From: Yao Qi To: Subject: [PATCH] Add missing parenthesis Date: Sat, 15 Nov 2014 16:50:20 +0800 Message-ID: <1416041420-29863-1-git-send-email-yao@codesourcery.com> MIME-Version: 1.0 X-IsSubscribed: yes One parenthesis is missing, and it causes a compilation error. This patch is to fix it. It is obvious, and I'll pushed it in. gdb: 2014-11-15 Yao Qi * go32-nat.c (go32_create_inferior): Add missing parenthesis. --- gdb/go32-nat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdb/go32-nat.c b/gdb/go32-nat.c index 8f59426..a8b8c3c 100644 --- a/gdb/go32-nat.c +++ b/gdb/go32-nat.c @@ -696,7 +696,7 @@ go32_create_inferior (struct target_ops *ops, char *exec_file, xfree (cmdline); if (result != 0) - error (_("Load failed for image %s", exec_file); + error (_("Load failed for image %s"), exec_file); edi_init (start_state); #if __DJGPP_MINOR__ < 3