From nobody Sun May 19 20:12:54 2024 Delivered-To: importer@patchew.org Authentication-Results: mx.zohomail.com; spf=pass (zohomail.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mx.zohomail.com with SMTPS id 1691239966629284.76727119423515; Sat, 5 Aug 2023 05:52:46 -0700 (PDT) Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1qSGlE-0006Mt-5v; Sat, 05 Aug 2023 08:52:00 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qSGlC-0006MV-Gy for qemu-devel@nongnu.org; Sat, 05 Aug 2023 08:51:58 -0400 Received: from mailfish.xiph.osuosl.org ([140.211.166.35] helo=mailfish.xiph.org) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1qSGlA-0006a4-5y for qemu-devel@nongnu.org; Sat, 05 Aug 2023 08:51:58 -0400 Received: from localhost.localdomain (c-24-126-94-29.hsd1.wv.comcast.net [24.126.94.29]) by mailfish.xiph.org (Postfix) with ESMTPSA id 92B3D9F8A1; Sat, 5 Aug 2023 12:51:51 +0000 (UTC) From: Nathan Egge To: Richard Henderson Cc: Akihiko Odaki , Helge Deller , qemu-devel@nongnu.org, "Nathan Egge" Subject: [PATCH] Fix scripts/checkpatch.py style failures. Date: Sat, 5 Aug 2023 08:51:24 -0400 Message-Id: <20230805125124.42482-1-negge@xiph.org> X-Mailer: git-send-email 2.35.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Received-SPF: pass (zohomail.com: domain of gnu.org designates 209.51.188.17 as permitted sender) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Received-SPF: pass client-ip=140.211.166.35; envelope-from=negge@xiph.org; helo=mailfish.xiph.org X-Spam_score_int: -41 X-Spam_score: -4.2 X-Spam_bar: ---- X-Spam_report: (-4.2 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_MED=-2.3, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: qemu-devel-bounces+importer=patchew.org@nongnu.org X-ZM-MESSAGEID: 1691239968050100001 Content-Type: text/plain; charset="utf-8" From: "Nathan Egge" Signed-off-by: Nathan Egge --- linux-user/syscall.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 95727a816a..38ab2201e2 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -863,8 +863,8 @@ abi_long do_brk(abi_ulong brk_val) if (new_host_brk_page > brk_page) { new_alloc_size =3D new_host_brk_page - brk_page; mapped_addr =3D get_errno(target_mmap(brk_page, new_alloc_size, - PROT_READ|PROT_WRITE, - MAP_ANON|MAP_PRIVATE, 0, 0)); + PROT_READ | PROT_WRITE, + MAP_ANON | MAP_PRIVATE, 0, 0)); } else { new_alloc_size =3D 0; mapped_addr =3D brk_page; @@ -6128,8 +6128,8 @@ static abi_long write_ldt(CPUX86State *env, if (!ldt_table) { env->ldt.base =3D target_mmap(0, TARGET_LDT_ENTRIES * TARGET_LDT_ENTRY_= SIZE, - PROT_READ|PROT_WRITE, - MAP_ANONYMOUS|MAP_PRIVATE, -1, 0); + PROT_READ | PROT_WRITE, + MAP_ANONYMOUS | MAP_PRIVATE, -1, 0); if (env->ldt.base =3D=3D -1) return -TARGET_ENOMEM; memset(g2h_untagged(env->ldt.base), 0, --=20 2.35.1