From b55266b5a235afe7b0aa946e2a6d49010f35e71c Mon Sep 17 00:00:00 2001 From: blueswir1 Date: Sat, 20 Sep 2008 08:07:15 +0000 Subject: Suppress gcc 4.x -Wpointer-sign (included in -Wall) warnings git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5275 c046a42c-6fe2-441c-8c8c-71466251a162 --- linux-user/syscall.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'linux-user/syscall.c') diff --git a/linux-user/syscall.c b/linux-user/syscall.c index a3b975d..0260756 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -947,7 +947,8 @@ static abi_long do_getsockopt(int sockfd, int level, int optname, abi_ulong optval_addr, abi_ulong optlen) { abi_long ret; - int len, lv, val; + int len, val; + socklen_t lv; switch(level) { case TARGET_SOL_SOCKET: -- cgit v1.1