gdb: remove duplicate declaration of 'find_thread_ptid'
[deliverable/binutils-gdb.git] / gdb / printcmd.c
index 22fa5c074d1c9ad6fab1064901b9c2608a09e1ab..3cd42f817f5164a13d2b2cbe794d4744f81b14ac 100644 (file)
@@ -1525,8 +1525,7 @@ info_symbol_command (const char *arg, int from_tty)
 
        sect_addr = overlay_mapped_address (addr, osect);
 
-       if (obj_section_addr (osect) <= sect_addr
-           && sect_addr < obj_section_endaddr (osect)
+       if (osect->addr () <= sect_addr && sect_addr < osect->endaddr ()
            && (msymbol
                = lookup_minimal_symbol_by_pc_section (sect_addr,
                                                       osect).minsym))
This page took 0.023252 seconds and 4 git commands to generate.