Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/rtld/dynamic.c

    r33f86a3 r9d58539  
    3636
    3737#include <stdio.h>
    38 #include <inttypes.h>
    3938
    4039#include <rtld/elf_dyn.h>
     
    106105        info->dynamic = dyn_ptr;
    107106
    108         DPRINTF("str_tab=0x%" PRIxPTR ", soname_idx=0x%x, soname=0x%" PRIxPTR "\n",
     107        DPRINTF("str_tab=0x%x, soname_idx=0x%x, soname=0x%x\n",
    109108                (uintptr_t)info->soname, soname_idx, (uintptr_t)info->soname);
    110109        DPRINTF("soname='%s'\n", info->soname);
    111110        DPRINTF("rpath='%s'\n", info->rpath);
    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);
     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);
    117116
    118117        /*
Note: See TracChangeset for help on using the changeset viewer.