From patchwork Tue May 3 23:07:31 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Don Breazeal X-Patchwork-Id: 11997 Received: (qmail 66491 invoked by alias); 3 May 2016 23:07:57 -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 66057 invoked by uid 89); 3 May 2016 23:07:57 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=ham version=3.3.2 spammy= 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 (AES256-GCM-SHA384 encrypted) ESMTPS; Tue, 03 May 2016 23:07:47 +0000 Received: from svr-orw-fem-03.mgc.mentorg.com ([147.34.97.39]) by relay1.mentorg.com with esmtp id 1axjPt-0001KK-5y from Don_Breazeal@mentor.com for gdb-patches@sourceware.org; Tue, 03 May 2016 16:07:45 -0700 Received: from build4-lucid-cs (147.34.91.1) by svr-orw-fem-03.mgc.mentorg.com (147.34.97.39) with Microsoft SMTP Server id 14.3.224.2; Tue, 3 May 2016 16:07:44 -0700 Received: by build4-lucid-cs (Postfix, from userid 1905) id EC6464130A; Tue, 3 May 2016 16:07:30 -0700 (PDT) From: Don Breazeal To: Subject: [ob/pushed] Fix typos in gdb_pipe function comment Date: Tue, 3 May 2016 16:07:31 -0700 Message-ID: <1462316851-19956-1-git-send-email-donb@codesourcery.com> MIME-Version: 1.0 X-IsSubscribed: yes This patch fixes mis-typed argument names in the function comment for gdb_pipe. Committed as obvious. Thanks --Don gdb/ChangeLog: 2016-05-03 Don Breazeal * serial.h (gdb_pipe): Fix argument names in comment. --- gdb/ChangeLog | 4 ++++ gdb/serial.h | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8627cb7..78b3abb 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2016-05-03 Don Breazeal + + * serial.h (gdb_pipe): Fix argument names in comment. + 2016-05-03 Pedro Alves PR python/20037 diff --git a/gdb/serial.h b/gdb/serial.h index 10b0643..84373f5 100644 --- a/gdb/serial.h +++ b/gdb/serial.h @@ -75,8 +75,8 @@ extern void serial_ref (struct serial *scb); extern void serial_unref (struct serial *scb); -/* Create a pipe, and put the read end in files[0], and the write end - in filde[1]. Returns 0 for success, negative value for error (in +/* Create a pipe, and put the read end in FILDES[0], and the write end + in FILDES[1]. Returns 0 for success, negative value for error (in which case errno contains the error). */ extern int gdb_pipe (int fildes[2]);