Changes in uspace/app/taskdump/symtab.c [ca0e838:5a6cc679] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/taskdump/symtab.c
rca0e838 r5a6cc679 41 41 #include <stddef.h> 42 42 #include <errno.h> 43 #include <str.h>44 43 #include <str_error.h> 45 44 #include <vfs/vfs.h> … … 215 214 continue; 216 215 217 stype = elf_st_type(st->sym[i].st_info);216 stype = ELF_ST_TYPE(st->sym[i].st_info); 218 217 if (stype != STT_OBJECT && stype != STT_FUNC) 219 218 continue; … … 257 256 continue; 258 257 259 stype = elf_st_type(st->sym[i].st_info);258 stype = ELF_ST_TYPE(st->sym[i].st_info); 260 259 if (stype != STT_OBJECT && stype != STT_FUNC && 261 260 stype != STT_NOTYPE) {
Note:
See TracChangeset
for help on using the changeset viewer.