From 4020f27707e748a2da58de72461dc1befd6bc9c5 Mon Sep 17 00:00:00 2001 From: ths Date: Mon, 28 May 2007 14:05:41 +0000 Subject: [PATCH] Fix do_socketcall argument, by Daniel Jacobowitz. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2887 c046a42c-6fe2-441c-8c8c-71466251a162 --- linux-user/syscall.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux-user/syscall.c b/linux-user/syscall.c index abefe856bb..cf93997561 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -953,7 +953,7 @@ static long do_recvfrom(int fd, target_ulong msg, size_t len, int flags, return ret; } -static long do_socketcall(int num, target_ulong vptr) +static long do_socketcall(int num, target_phys_addr_t vptr) { long ret; const int n = sizeof(target_ulong); -- 2.30.2