From b6ebe65cdac1afc15d5459318007be2d1d8832d0 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Mon, 18 Aug 2025 15:27:34 +0100 Subject: [PATCH] Fix compile time warning when building with Clang. PR 33282 --- bfd/elf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bfd/elf.c b/bfd/elf.c index 664fb6ced0a..6ef60301091 100644 --- a/bfd/elf.c +++ b/bfd/elf.c @@ -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. */