Changes in uspace/lib/c/generic/rtld/dynamic.c [9d58539:33f86a3] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/rtld/dynamic.c
r9d58539 r33f86a3 36 36 37 37 #include <stdio.h> 38 #include <inttypes.h> 38 39 39 40 #include <rtld/elf_dyn.h> … … 105 106 info->dynamic = dyn_ptr; 106 107 107 DPRINTF("str_tab=0x% x, soname_idx=0x%x, soname=0x%x\n",108 DPRINTF("str_tab=0x%" PRIxPTR ", soname_idx=0x%x, soname=0x%" PRIxPTR "\n", 108 109 (uintptr_t)info->soname, soname_idx, (uintptr_t)info->soname); 109 110 DPRINTF("soname='%s'\n", info->soname); 110 111 DPRINTF("rpath='%s'\n", info->rpath); 111 DPRINTF("hash=0x% x\n", (uintptr_t)info->hash);112 DPRINTF("dt_rela=0x% x\n", (uintptr_t)info->rela);113 DPRINTF("dt_rela_sz=0x% x\n", (uintptr_t)info->rela_sz);114 DPRINTF("dt_rel=0x% x\n", (uintptr_t)info->rel);115 DPRINTF("dt_rel_sz=0x% x\n", (uintptr_t)info->rel_sz);112 DPRINTF("hash=0x%" PRIxPTR "\n", (uintptr_t)info->hash); 113 DPRINTF("dt_rela=0x%" PRIxPTR "\n", (uintptr_t)info->rela); 114 DPRINTF("dt_rela_sz=0x%" PRIxPTR "\n", (uintptr_t)info->rela_sz); 115 DPRINTF("dt_rel=0x%" PRIxPTR "\n", (uintptr_t)info->rel); 116 DPRINTF("dt_rel_sz=0x%" PRIxPTR "\n", (uintptr_t)info->rel_sz); 116 117 117 118 /*
Note:
See TracChangeset
for help on using the changeset viewer.