commit | b55266b5a235afe7b0aa946e2a6d49010f35e71c | [log] [tgz] |
---|---|---|
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | Sat Sep 20 08:07:15 2008 +0000 |
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | Sat Sep 20 08:07:15 2008 +0000 |
tree | 2fe5802cc0ce47d7e8d4bdd2ea08a8dfa74f6720 | |
parent | 67d8cec34b1560973f5c25e14fac53b4ef5b0f6e [diff] [blame] |
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
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 @@ 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: