Revision 0bfcd599 darwin-user/syscall.c

b/darwin-user/syscall.c
858 858

  
859 859
long do_pread(uint32_t arg1, void * arg2, size_t arg3, off_t arg4)
860 860
{
861
    DPRINTF("0x%x, %p, 0x%lx, 0x%llx\n", arg1, arg2, arg3, arg4);
861
    DPRINTF("0x%x, %p, 0x%lx, 0x%" PRIx64 "\n", arg1, arg2, arg3, arg4);
862 862
    long ret = pread(arg1, arg2, arg3, arg4);
863 863
    return ret;
864 864
}

Also available in: Unified diff