diff options
Diffstat (limited to 'bfd/elf-bfd.h')
-rw-r--r-- | bfd/elf-bfd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/elf-bfd.h b/bfd/elf-bfd.h index 101c2fd..296b80a 100644 --- a/bfd/elf-bfd.h +++ b/bfd/elf-bfd.h @@ -3093,7 +3093,7 @@ static inline bool bfd_section_is_ctf (const asection *sec) { const char *name = bfd_section_name (sec); - return strncmp (name, ".ctf", 4) == 0 && (name[4] == 0 || name[4] == '.'); + return startswith (name, ".ctf") && (name[4] == 0 || name[4] == '.'); } #ifdef __cplusplus |