diff options
author | Nick Clifton <nickc@redhat.com> | 2025-08-18 15:27:34 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2025-08-18 15:27:34 +0100 |
commit | b6ebe65cdac1afc15d5459318007be2d1d8832d0 (patch) | |
tree | e8fe320068ba10e4940413137c29ea8e769742cd | |
parent | d412728cda0e7d14a46cfbe6beb6e2c65088f301 (diff) | |
download | binutils-b6ebe65cdac1afc15d5459318007be2d1d8832d0.zip binutils-b6ebe65cdac1afc15d5459318007be2d1d8832d0.tar.gz binutils-b6ebe65cdac1afc15d5459318007be2d1d8832d0.tar.bz2 |
Fix compile time warning when building with Clang.
PR 33282
-rw-r--r-- | bfd/elf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -51,7 +51,7 @@ SECTION /* Utility macro to make testing for string equality easier to read. */ #ifndef streq -#define streq(A,B) strcmp ((A), (B)) == 0 +#define streq(A,B) (strcmp ((A), (B)) == 0) #endif /* Core note names. */ |