From patchwork Tue Jan 26 21:30:46 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Marchi X-Patchwork-Id: 10633 Received: (qmail 60841 invoked by alias); 26 Jan 2016 21:30: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 60823 invoked by uid 89); 26 Jan 2016 21:30:56 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.9 required=5.0 tests=BAYES_00, KAM_LAZY_DOMAIN_SECURITY autolearn=no version=3.3.2 spammy=Hx-languages-length:1281, obv, D*ericsson.com X-HELO: usplmg21.ericsson.net Received: from usplmg21.ericsson.net (HELO usplmg21.ericsson.net) (198.24.6.65) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Tue, 26 Jan 2016 21:30:55 +0000 Received: from EUSAAHC007.ericsson.se (Unknown_Domain [147.117.188.93]) by usplmg21.ericsson.net (Symantec Mail Security) with SMTP id C5.43.32102.975E7A65; Tue, 26 Jan 2016 22:30:34 +0100 (CET) Received: from elxcz23q12-y4.dyn.mo.ca.am.ericsson.se (147.117.188.8) by smtps-am.internal.ericsson.com (147.117.188.93) with Microsoft SMTP Server (TLS) id 14.3.248.2; Tue, 26 Jan 2016 16:30:51 -0500 From: Simon Marchi To: CC: Simon Marchi Subject: [PATCH obv] Fix function comments Date: Tue, 26 Jan 2016 16:30:46 -0500 Message-ID: <1453843846-20476-1-git-send-email-simon.marchi@ericsson.com> MIME-Version: 1.0 X-IsSubscribed: yes FYI, I am pushing this as obvious. Two obvious fixes. gdb/ChangeLog: * common/common-utils.c (skip_spaces): Fix comment. (skip_to_space_const): Likewise. --- gdb/ChangeLog | 5 +++++ gdb/common/common-utils.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 099c10c..64ac558 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2016-01-26 Simon Marchi + + * common/common-utils.c (skip_spaces): Fix comment. + (skip_to_space_const): Likewise. + 2016-01-25 Yao Qi * arch/arm-get-next-pcs.c (thumb_deal_with_atomic_sequence_raw): diff --git a/gdb/common/common-utils.c b/gdb/common/common-utils.c index c1b5eea..33668f3 100644 --- a/gdb/common/common-utils.c +++ b/gdb/common/common-utils.c @@ -253,7 +253,7 @@ strtoulst (const char *num, const char **trailer, int base) return result; } -/* See documentation in cli-utils.h. */ +/* See documentation in common-utils.h. */ char * skip_spaces (char *chp) @@ -277,7 +277,7 @@ skip_spaces_const (const char *chp) return chp; } -/* See documentation in cli-utils.h. */ +/* See documentation in common-utils.h. */ const char * skip_to_space_const (const char *chp)