From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1E90WL-0005n1-LO for qemu-devel@nongnu.org; Sat, 27 Aug 2005 09:14:54 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1E90WI-0005mB-T2 for qemu-devel@nongnu.org; Sat, 27 Aug 2005 09:14:52 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1E90WH-0005hQ-Tn for qemu-devel@nongnu.org; Sat, 27 Aug 2005 09:14:50 -0400 Received: from [212.247.154.225] (helo=swip.net) by monty-python.gnu.org with esmtp (Exim 4.34) id 1E90S3-0004bI-5z for qemu-devel@nongnu.org; Sat, 27 Aug 2005 09:10:27 -0400 Received: from [83.182.16.50] (HELO aphrodite.beeznest.net) by mailfe08.swip.net (CommuniGate Pro SMTP 4.3.4) with ESMTP id 250675588 for qemu-devel@nongnu.org; Sat, 27 Aug 2005 15:08:38 +0200 From: =?ISO-8859-1?Q?J=E9r=F4me?= Warnier Content-Type: text/plain Date: Sat, 27 Aug 2005 15:05:14 +0200 Message-Id: <1125147914.30706.10.camel@localhost> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] Duplicate case values in linux-user/syscall.c (0.7.1) Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: List qemu-devel When trying to build qemu 0.7.1 (on Debian), I get the following kind of errors: /home/jwarnier/debian/qemu-0.7.1/linux-user/syscall.c: In function `do_setsockopt': /home/jwarnier/debian/qemu-0.7.1/linux-user/syscall.c:647: error: duplicate case value /home/jwarnier/debian/qemu-0.7.1/linux-user/syscall.c:550: error: previously used here /home/jwarnier/debian/qemu-0.7.1/linux-user/syscall.c:650: error: `len' undeclared (first use in this function) /home/jwarnier/debian/qemu-0.7.1/linux-user/syscall.c:650: error: (Each undeclared identifier is reported only once /home/jwarnier/debian/qemu-0.7.1/linux-user/syscall.c:650: error: for each function it appears in.) /home/jwarnier/debian/qemu-0.7.1/linux-user/syscall.c:655: error: invalid type argument of `unary *' /home/jwarnier/debian/qemu-0.7.1/linux-user/syscall.c:655: error: invalid type argument of `unary *' /home/jwarnier/debian/qemu-0.7.1/linux-user/syscall.c:655: warning: type defaults to `int' in declaration of `type name' /home/jwarnier/debian/qemu-0.7.1/linux-user/syscall.c:655: error: invalid type argument of `unary *' /home/jwarnier/debian/qemu-0.7.1/linux-user/syscall.c:655: warning: type defaults to `int' in declaration of `type name' /home/jwarnier/debian/qemu-0.7.1/linux-user/syscall.c:655: error: invalid type argument of `unary *' /home/jwarnier/debian/qemu-0.7.1/linux-user/syscall.c:655: warning: type defaults to `int' in declaration of `type name' /home/jwarnier/debian/qemu-0.7.1/linux-user/syscall.c:655: error: invalid type argument of `unary *' /home/jwarnier/debian/qemu-0.7.1/linux-user/syscall.c:655: warning: type defaults to `int' in declaration of `type name' /home/jwarnier/debian/qemu-0.7.1/linux-user/syscall.c: In function `do_getsockopt': /home/jwarnier/debian/qemu-0.7.1/linux-user/syscall.c:766: error: duplicate case value /home/jwarnier/debian/qemu-0.7.1/linux-user/syscall.c:701: error: previously used here I could already reduce the number of errors, but this are too much for me. Is this file autogenerated or so? Thanks