From: Simon Marchi Date: Sat, 30 Aug 2025 13:22:00 +0000 (-0400) Subject: gdb: fix include guard in arch/aarch64-gcs-linux.h X-Git-Tag: gdb-17-branchpoint~107 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=40915a1db7e0c76e4ab63225d6b481a91ce289e4;p=thirdparty%2Fbinutils-gdb.git gdb: fix include guard in arch/aarch64-gcs-linux.h Fix: $ gdb/check-include-guards.py gdb/arch/aarch64-gcs-linux.h gdb/arch/aarch64-gcs-linux.h:20: wrong symbol in ifndef Change-Id: I7586d5c22abe11501f59439df2b4a73bff7d201e --- diff --git a/gdb/arch/aarch64-gcs-linux.h b/gdb/arch/aarch64-gcs-linux.h index 9366caa7289..922c779d139 100644 --- a/gdb/arch/aarch64-gcs-linux.h +++ b/gdb/arch/aarch64-gcs-linux.h @@ -17,8 +17,8 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ -#ifndef ARCH_AARCH64_GCS_LINUX_H -#define ARCH_AARCH64_GCS_LINUX_H +#ifndef GDB_ARCH_AARCH64_GCS_LINUX_H +#define GDB_ARCH_AARCH64_GCS_LINUX_H #include @@ -41,4 +41,4 @@ struct user_gcs #endif /* GCS_MAGIC */ -#endif /* ARCH_AARCH64_GCS_LINUX_H */ +#endif /* GDB_ARCH_AARCH64_GCS_LINUX_H */