diff options
author | Christian Biesinger <cbiesinger@google.com> | 2020-02-05 11:33:42 -0600 |
---|---|---|
committer | Christian Biesinger <cbiesinger@google.com> | 2020-02-05 11:35:33 -0600 |
commit | c8ecdda6b68722c35bfdef56fdd4ba652d77bffc (patch) | |
tree | 4a32a1496b2fd08355e8d5d69562357fc2268eff | |
parent | f6480e70001df1c8151362cd4621578bcb293224 (diff) | |
download | gdb-c8ecdda6b68722c35bfdef56fdd4ba652d77bffc.zip gdb-c8ecdda6b68722c35bfdef56fdd4ba652d77bffc.tar.gz gdb-c8ecdda6b68722c35bfdef56fdd4ba652d77bffc.tar.bz2 |
Fix header guard name in #endif comment
Makes the comment match the macro name in the #define/#ifdef.
gdb/ChangeLog:
2020-02-05 Christian Biesinger <cbiesinger@google.com>
* ppc-nbsd-tdep.h: Fix macro name in #endif comment.
Change-Id: If7b2e49e65495b8eb9ed7b6c9a11277579a93a05
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/ppc-nbsd-tdep.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8ea4ea5..193edf0 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2020-02-05 Christian Biesinger <cbiesinger@google.com> + + * ppc-nbsd-tdep.h: Fix macro name in #endif comment. + 2020-02-05 Maciej W. Rozycki <macro@wdc.com> * nat/riscv-linux-tdesc.h: New file. diff --git a/gdb/ppc-nbsd-tdep.h b/gdb/ppc-nbsd-tdep.h index 79b24c1..efbed9e 100644 --- a/gdb/ppc-nbsd-tdep.h +++ b/gdb/ppc-nbsd-tdep.h @@ -29,4 +29,4 @@ extern struct ppc_reg_offsets ppcnbsd_reg_offsets; extern const struct regset ppcnbsd_gregset; extern const struct regset ppcnbsd_fpregset; -#endif /* ppc-nbsd-tdep.h */ +#endif /* PPC_NBSD_TDEP_H */ |