From nobody Fri May 3 11:46:57 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (208.118.235.17 [208.118.235.17]) by mx.zohomail.com with SMTPS id 151124664368591.11897638376058; Mon, 20 Nov 2017 22:44:03 -0800 (PST) Received: from localhost ([::1]:32864 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eH2Hc-0002HH-Ty for importer@patchew.org; Tue, 21 Nov 2017 01:43:48 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56315) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eH2Gr-00020I-Cj for qemu-devel@nongnu.org; Tue, 21 Nov 2017 01:43:02 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eH2Go-0001yG-8W for qemu-devel@nongnu.org; Tue, 21 Nov 2017 01:43:01 -0500 Received: from mx1.redhat.com ([209.132.183.28]:19986) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eH2Go-0001xj-2t for qemu-devel@nongnu.org; Tue, 21 Nov 2017 01:42:58 -0500 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id B5CDC76523; Tue, 21 Nov 2017 06:42:55 +0000 (UTC) Received: from localhost.localdomain.com (unknown [10.35.7.47]) by smtp.corp.redhat.com (Postfix) with ESMTP id 1318784F77; Tue, 21 Nov 2017 06:42:53 +0000 (UTC) From: Yoni Bettan To: qemu-devel@nongnu.org Date: Tue, 21 Nov 2017 08:41:06 +0200 Message-Id: <20171121064106.13721-1-ybettan@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.26]); Tue, 21 Nov 2017 06:42:56 +0000 (UTC) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH] vl.c && linux-user/main.c : removed **envp from main() arguments X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Paolo Bonzini , Yoni Bettan , Riku Voipio , Laurent Vivier Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" * it was added on 2008 902b3d5c392bb6f48ef340ad8ecc3311705d2800 when introduced cache-utils.[ch] * since then cache-utils.[ch] were removed but **envp was left behind Signed-off-by: Yoni Bettan --- linux-user/main.c | 2 +- vl.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/linux-user/main.c b/linux-user/main.c index aa02f25b85..ca5628c1ca 100644 --- a/linux-user/main.c +++ b/linux-user/main.c @@ -4233,7 +4233,7 @@ static int parse_args(int argc, char **argv) return optind; } =20 -int main(int argc, char **argv, char **envp) +int main(int argc, char **argv) { struct target_pt_regs regs1, *regs =3D ®s1; struct image_info info1, *info =3D &info1; diff --git a/vl.c b/vl.c index 1ad1c04637..9667756ccc 100644 --- a/vl.c +++ b/vl.c @@ -35,10 +35,10 @@ #ifdef CONFIG_SDL #if defined(__APPLE__) || defined(main) #include -int qemu_main(int argc, char **argv, char **envp); +int qemu_main(int argc, char **argv); int main(int argc, char **argv) { - return qemu_main(argc, argv, NULL); + return qemu_main(argc, argv); } #undef main #define main qemu_main @@ -3088,7 +3088,7 @@ static void register_global_properties(MachineState *= ms) user_register_global_props(); } =20 -int main(int argc, char **argv, char **envp) +int main(int argc, char **argv) { int i; int snapshot, linux_boot; --=20 2.13.6