]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
gdb: fix include guard in arch/aarch64-gcs-linux.h
authorSimon Marchi <simon.marchi@polymtl.ca>
Sat, 30 Aug 2025 13:22:00 +0000 (09:22 -0400)
committerSimon Marchi <simon.marchi@polymtl.ca>
Sat, 30 Aug 2025 13:22:55 +0000 (09:22 -0400)
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

gdb/arch/aarch64-gcs-linux.h

index 9366caa7289a130ce2b94640ff256bdc85c59048..922c779d139f63906632fbbfac8998f717a95974 100644 (file)
@@ -17,8 +17,8 @@
    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
-#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 <stdint.h>
 
@@ -41,4 +41,4 @@ struct user_gcs
 
 #endif /* GCS_MAGIC */
 
-#endif /* ARCH_AARCH64_GCS_LINUX_H */
+#endif /* GDB_ARCH_AARCH64_GCS_LINUX_H */