From patchwork Mon Oct 15 05:45:40 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Weil X-Patchwork-Id: 191467 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id D7C232C009A for ; Mon, 15 Oct 2012 16:45:58 +1100 (EST) Received: from localhost ([::1]:51868 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TNdUw-0002M9-Er for incoming@patchwork.ozlabs.org; Mon, 15 Oct 2012 01:45:54 -0400 Received: from eggs.gnu.org ([208.118.235.92]:33612) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TNdUm-0002Ls-St for qemu-devel@nongnu.org; Mon, 15 Oct 2012 01:45:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TNdUl-0003Jh-PO for qemu-devel@nongnu.org; Mon, 15 Oct 2012 01:45:44 -0400 Received: from v220110690675601.yourvserver.net ([78.47.199.172]:35458) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TNdUl-0003Ie-Hy; Mon, 15 Oct 2012 01:45:43 -0400 Received: from localhost (v220110690675601.yourvserver.net.local [127.0.0.1]) by v220110690675601.yourvserver.net (Postfix) with ESMTP id 667C1728003B; Mon, 15 Oct 2012 07:45:41 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at weilnetz.de Received: from v220110690675601.yourvserver.net ([127.0.0.1]) by localhost (v220110690675601.yourvserver.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id a1TjybG87YZF; Mon, 15 Oct 2012 07:45:40 +0200 (CEST) Received: by v220110690675601.yourvserver.net (Postfix, from userid 1000) id DD41E7280041; Mon, 15 Oct 2012 07:45:40 +0200 (CEST) From: Stefan Weil To: qemu-trivial@nongnu.org Date: Mon, 15 Oct 2012 07:45:40 +0200 Message-Id: <1350279940-24134-1-git-send-email-sw@weilnetz.de> X-Mailer: git-send-email 1.7.10.4 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 78.47.199.172 Cc: Stefan Weil , qemu-devel@nongnu.org Subject: [Qemu-devel] [PATCH] configure: Remove unused parameters from main function X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org This modification is required if compiler option -Wunused-parameter is activated. Signed-off-by: Stefan Weil --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 353d788..499ad81 100755 --- a/configure +++ b/configure @@ -1323,7 +1323,7 @@ if test -z "$cross_prefix" ; then # big/little endian test cat > $TMPC << EOF #include -int main(int argc, char ** argv){ +int main(void) { volatile uint32_t i=0x01234567; return (*((uint8_t*)(&i))) == 0x67; } @@ -2896,7 +2896,7 @@ static int sfaa(int *ptr) return __sync_fetch_and_and(ptr, 0); } -int main(int argc, char **argv) +int main(void) { int val = 42; sfaa(&val);