Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ppc32/src/ppc32.c

    r5a5269d r88e43bc  
    292292void userspace(uspace_arg_t *kernel_uarg)
    293293{
    294         userspace_asm(kernel_uarg->uspace_uarg,
    295             kernel_uarg->uspace_stack +
     294        userspace_asm((uintptr_t) kernel_uarg->uspace_uarg,
     295            (uintptr_t) kernel_uarg->uspace_stack +
    296296            kernel_uarg->uspace_stack_size - SP_DELTA,
    297             kernel_uarg->uspace_entry);
     297            (uintptr_t) kernel_uarg->uspace_entry);
    298298
    299299        unreachable();
Note: See TracChangeset for help on using the changeset viewer.