diff --git a/output/outelf32.c b/output/outelf32.c index 00b3f5e5..48f91776 100644 --- a/output/outelf32.c +++ b/output/outelf32.c @@ -2117,7 +2117,7 @@ static void dwarf32_findsect(const int index) if (dwarf_fsect) { match = dwarf_fsect; for (sinx = 0; sinx < dwarf_nsections; sinx++) { - if ((match->section == index)) { + if (match->section == index) { dwarf_csect = match; return; } diff --git a/output/outelf64.c b/output/outelf64.c index 97769727..8175aedc 100644 --- a/output/outelf64.c +++ b/output/outelf64.c @@ -2204,7 +2204,7 @@ static void dwarf64_findsect(const int index) if (dwarf_fsect) { match = dwarf_fsect; for (sinx = 0; sinx < dwarf_nsections; sinx++) { - if ((match->section == index)) { + if (match->section == index) { dwarf_csect = match; return; } diff --git a/output/outelfx32.c b/output/outelfx32.c index 914a83e8..57bbf75b 100644 --- a/output/outelfx32.c +++ b/output/outelfx32.c @@ -2159,7 +2159,7 @@ static void dwarfx32_findsect(const int index) if (dwarf_fsect) { match = dwarf_fsect; for (sinx = 0; sinx < dwarf_nsections; sinx++) { - if ((match->section == index)) { + if (match->section == index) { dwarf_csect = match; return; }