diff options
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/gdbtypes.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3cfd738..b5f664c 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2020-05-02 Hannes Domani <ssbssa@yahoo.de> + + * gdbtypes.h (enum dynamic_prop_node_kind): Fix typo. + 2020-05-01 Philippe Waroquiers <philippe.waroquiers@skynet.be> * gdb-gdb.gdb-in: Remove breakpoint on disappeared function diff --git a/gdb/gdbtypes.h b/gdb/gdbtypes.h index 87b1bca..8899fb1 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, |