From patchwork Fri Nov 24 21:09:44 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ulrich Weigand X-Patchwork-Id: 24505 Received: (qmail 39909 invoked by alias); 24 Nov 2017 21:09:52 -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 39894 invoked by uid 89); 24 Nov 2017 21:09:51 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-25.7 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KB_WAM_FROM_NAME_SINGLEWORD, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 spammy= X-HELO: mx0a-001b2d01.pphosted.com Received: from mx0b-001b2d01.pphosted.com (HELO mx0a-001b2d01.pphosted.com) (148.163.158.5) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 24 Nov 2017 21:09:50 +0000 Received: from pps.filterd (m0098414.ppops.net [127.0.0.1]) by mx0b-001b2d01.pphosted.com (8.16.0.21/8.16.0.21) with SMTP id vAOL9NKY061976 for ; Fri, 24 Nov 2017 16:09:49 -0500 Received: from e06smtp12.uk.ibm.com (e06smtp12.uk.ibm.com [195.75.94.108]) by mx0b-001b2d01.pphosted.com with ESMTP id 2eepm9sune-1 (version=TLSv1.2 cipher=AES256-SHA bits=256 verify=NOT) for ; Fri, 24 Nov 2017 16:09:48 -0500 Received: from localhost by e06smtp12.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Fri, 24 Nov 2017 21:09:47 -0000 Received: from b06cxnps3075.portsmouth.uk.ibm.com (9.149.109.195) by e06smtp12.uk.ibm.com (192.168.101.142) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Fri, 24 Nov 2017 21:09:45 -0000 Received: from d06av26.portsmouth.uk.ibm.com (d06av26.portsmouth.uk.ibm.com [9.149.105.62]) by b06cxnps3075.portsmouth.uk.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id vAOL9jYv27197466 for ; Fri, 24 Nov 2017 21:09:45 GMT Received: from d06av26.portsmouth.uk.ibm.com (unknown [127.0.0.1]) by IMSVA (Postfix) with ESMTP id 9AEAEAE051 for ; Fri, 24 Nov 2017 21:02:57 +0000 (GMT) Received: from d06av26.portsmouth.uk.ibm.com (unknown [127.0.0.1]) by IMSVA (Postfix) with ESMTP id 87F28AE04D for ; Fri, 24 Nov 2017 21:02:57 +0000 (GMT) Received: from oc3748833570.ibm.com (unknown [9.164.187.199]) by d06av26.portsmouth.uk.ibm.com (Postfix) with ESMTP for ; Fri, 24 Nov 2017 21:02:57 +0000 (GMT) Received: by oc3748833570.ibm.com (Postfix, from userid 1000) id 81389D802C3; Fri, 24 Nov 2017 22:09:44 +0100 (CET) Subject: [spu] Fix spu-linux gdbserver build To: gdb-patches@sourceware.org Date: Fri, 24 Nov 2017 22:09:44 +0100 (CET) From: "Ulrich Weigand" MIME-Version: 1.0 X-TM-AS-GCONF: 00 x-cbid: 17112421-0008-0000-0000-000004AF54DA X-IBM-AV-DETECTION: SAVI=unused REMOTE=unused XFE=unused x-cbparentid: 17112421-0009-0000-0000-00001E42285B Message-Id: <20171124210944.81389D802C3@oc3748833570.ibm.com> X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:, , definitions=2017-11-24_07:, , signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 priorityscore=1501 malwarescore=0 suspectscore=1 phishscore=0 bulkscore=0 spamscore=0 clxscore=1015 lowpriorityscore=0 impostorscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1709140000 definitions=main-1711240286 Hello, this fixes a typo breaking the spu-linux gdbserver build. Bye, Ulrich gdb/ChangeLog: 2017-11-24 Ulrich Weigand * spu-low.c (spu_create_inferior): Fix typo in argument name. diff --git a/gdb/gdbserver/spu-low.c b/gdb/gdbserver/spu-low.c index 6362502..3069cfb 100644 --- a/gdb/gdbserver/spu-low.c +++ b/gdb/gdbserver/spu-low.c @@ -280,7 +280,7 @@ spu_ptrace_fun () static int spu_create_inferior (const char *program, - const std::vector &program_argv) + const std::vector &program_args) { int pid; ptid_t ptid;