From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2111) id D9F4C386F460; Sat, 2 May 2020 10:57:07 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D9F4C386F460 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Hannes Domani To: gdb-cvs@sourceware.org Subject: [binutils-gdb] Fix typo in comment of DYN_PROP_ASSOCIATED X-Act-Checkin: binutils-gdb X-Git-Author: Hannes Domani X-Git-Refname: refs/heads/master X-Git-Oldrev: 6a6ea76aee5a15a029f0b64c08e70a5e49d7a1ab X-Git-Newrev: a51119cde483f4e9eeaa4450d3f2a7b0e52fea3d Message-Id: <20200502105707.D9F4C386F460@sourceware.org> Date: Sat, 2 May 2020 10:57:07 +0000 (GMT) X-BeenThere: gdb-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 May 2020 10:57:08 -0000 https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=a51119cde483f4e9eeaa4450d3f2a7b0e52fea3d commit a51119cde483f4e9eeaa4450d3f2a7b0e52fea3d Author: Hannes Domani Date: Fri May 1 14:50:08 2020 +0200 Fix typo in comment of DYN_PROP_ASSOCIATED gdb/ChangeLog: 2020-05-02 Hannes Domani * gdbtypes.h (enum dynamic_prop_node_kind): Fix typo. Diff: --- gdb/ChangeLog | 4 ++++ gdb/gdbtypes.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3cfd7387597..b5f664c2bc5 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2020-05-02 Hannes Domani + + * gdbtypes.h (enum dynamic_prop_node_kind): Fix typo. + 2020-05-01 Philippe Waroquiers * gdb-gdb.gdb-in: Remove breakpoint on disappeared function diff --git a/gdb/gdbtypes.h b/gdb/gdbtypes.h index 87b1bca3a22..8899fb15119 100644 --- a/gdb/gdbtypes.h +++ b/gdb/gdbtypes.h @@ -547,7 +547,7 @@ enum dynamic_prop_node_kind indicates that the object of the type can be allocated/deallocated. */ DYN_PROP_ALLOCATED, - /* A property representing DW_AT_allocated. The presence of this attribute + /* A property representing DW_AT_associated. The presence of this attribute indicated that the object of the type can be associated. */ DYN_PROP_ASSOCIATED,