Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/taskdump/symtab.c

    rca0e838 r5a6cc679  
    4141#include <stddef.h>
    4242#include <errno.h>
    43 #include <str.h>
    4443#include <str_error.h>
    4544#include <vfs/vfs.h>
     
    215214                        continue;
    216215
    217                 stype = elf_st_type(st->sym[i].st_info);
     216                stype = ELF_ST_TYPE(st->sym[i].st_info);
    218217                if (stype != STT_OBJECT && stype != STT_FUNC)
    219218                        continue;
     
    257256                        continue;
    258257
    259                 stype = elf_st_type(st->sym[i].st_info);
     258                stype = ELF_ST_TYPE(st->sym[i].st_info);
    260259                if (stype != STT_OBJECT && stype != STT_FUNC &&
    261260                    stype != STT_NOTYPE) {
Note: See TracChangeset for help on using the changeset viewer.