From patchwork Wed Jul 16 14:11:47 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom Tromey X-Patchwork-Id: 2075 Received: (qmail 17709 invoked by alias); 16 Jul 2014 14:11:55 -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 17688 invoked by uid 89); 16 Jul 2014 14:11:54 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD, SPF_HELO_PASS, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Wed, 16 Jul 2014 14:11:53 +0000 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s6GEBomS027027 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Wed, 16 Jul 2014 10:11:51 -0400 Received: from barimba.redhat.com (ovpn-113-27.phx2.redhat.com [10.3.113.27]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s6GEBnM1009945; Wed, 16 Jul 2014 10:11:50 -0400 From: Tom Tromey To: gdb-patches@sourceware.org Cc: Tom Tromey Subject: [FYI] reformat comment in target.h Date: Wed, 16 Jul 2014 08:11:47 -0600 Message-Id: <1405519907-2040-1-git-send-email-tromey@redhat.com> A comment in target.h went past the column limit. This patch reformats it. I'm pushing this as obvious. 2014-07-16 Tom Tromey * target.h (struct target_ops) : Reformat comment. --- gdb/ChangeLog | 5 +++++ gdb/target.h | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/gdb/target.h b/gdb/target.h index 8bf160c..8c8ce00 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -1029,7 +1029,8 @@ struct target_ops void (*to_save_record) (struct target_ops *, const char *filename) TARGET_DEFAULT_NORETURN (tcomplain ()); - /* Delete the recorded execution trace from the current position onwards. */ + /* Delete the recorded execution trace from the current position + onwards. */ void (*to_delete_record) (struct target_ops *) TARGET_DEFAULT_NORETURN (tcomplain ());