Changeset 0e9b512 in mainline for uspace/app/dload/dload.c


Ignore:
Timestamp:
2011-04-03T16:31:15Z (13 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
cf44c14
Parents:
e2098dd7
Message:

Fix mips32 and ppc32 builds.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/dload/dload.c

    re2098dd7 r0e9b512  
    7070         */
    7171
    72         DPRINTF("Parse program .dynamic section at 0x%x\n", __pcb->dynamic);
     72        DPRINTF("Parse program .dynamic section at %p\n", __pcb->dynamic);
    7373        dynamic_parse(__pcb->dynamic, 0, &prog.dyn);
    7474        prog.bias = 0;
     
    106106         * Finally, run the main program.
    107107         */
    108         DPRINTF("Run program.. (at 0x%lx)\n", (uintptr_t)__pcb->entry);
     108        DPRINTF("Run program.. (at %p)\n", __pcb->entry);
    109109
    110110#ifndef RTLD_DEBUG
Note: See TracChangeset for help on using the changeset viewer.