From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54536) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VdQsm-0004Z7-2F for qemu-devel@nongnu.org; Mon, 04 Nov 2013 15:36:24 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VdQsh-0007XH-46 for qemu-devel@nongnu.org; Mon, 04 Nov 2013 15:36:20 -0500 Message-ID: <527805D2.3000107@redhat.com> Date: Mon, 04 Nov 2013 21:38:42 +0100 From: Laszlo Ersek MIME-Version: 1.0 References: <1383594685-19332-1-git-send-email-sw@weilnetz.de> In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH] gtk: Fix compiler warnings with -Werror=sign-compare List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell Cc: QEMU Trivial , Stefan Weil , qemu-devel , Anthony Liguori On 11/04/13 21:07, Peter Maydell wrote: > On 4 November 2013 19:51, Stefan Weil wrote: >> With -Werror=3Dsign-compare (not enabled by default), gcc shows these = errors: >> >> ui/gtk.c: In function =E2=80=98gtk_release_modifiers=E2=80=99: >> ui/gtk.c:288:19: error: >> comparison between signed and unsigned integer expressions [-Werror=3D= sign-compare] >> ui/gtk.c: In function =E2=80=98gd_key_event=E2=80=99: >> ui/gtk.c:746:19: error: >> comparison between signed and unsigned integer expressions [-Werror=3D= sign-compare] >=20 > If this warning is going to complain about entirely > safe and idiomatic code like >=20 > int i; > static const int some_array[] =3D { > 0x2a, 0x36, 0x1d, 0x9d, 0x38, 0xb8, 0xdb, 0xdd, > }; >=20 > for (i =3D 0; i < ARRAY_SIZE(some_array); i++) { > ... > } (Entirely safe, and completely non-idiomatic: "i" should be size_t, as that is the type of the sizeof operator's result.) Laszlo /me apologizes for the raging pedantry