| Message ID | 1768520616-7289-2-git-send-email-mark.hatle@kernel.crashing.org |
|---|---|
| State | New |
| Headers | show
Return-Path: <mark.hatle@kernel.crashing.org> X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id A402BD47CBF for <webhook@archiver.kernel.org>; Thu, 15 Jan 2026 23:43:50 +0000 (UTC) Received: from gate.crashing.org (gate.crashing.org [63.228.1.57]) by mx.groups.io with SMTP id smtpd.msgproc01-g2.753.1768520620774065173 for <yocto-patches@lists.yoctoproject.org>; Thu, 15 Jan 2026 15:43:41 -0800 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: kernel.crashing.org, ip: 63.228.1.57, mailfrom: mark.hatle@kernel.crashing.org) Received: from kernel.crashing.org.net (70-99-78-136.nuveramail.net [70.99.78.136] (may be forged)) by gate.crashing.org (8.18.1/8.18.1/Debian-2) with ESMTP id 60FNhbjW2408772; Thu, 15 Jan 2026 17:43:38 -0600 From: Mark Hatle <mark.hatle@kernel.crashing.org> To: yocto-patches@lists.yoctoproject.org Cc: seebs@seebs.net, richard.purdie@linuxfoundation.org Subject: [pseudo][PATCH 01/20] test-syscall: Remove build warning Date: Thu, 15 Jan 2026 17:43:17 -0600 Message-Id: <1768520616-7289-2-git-send-email-mark.hatle@kernel.crashing.org> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1768520616-7289-1-git-send-email-mark.hatle@kernel.crashing.org> References: <1768520616-7289-1-git-send-email-mark.hatle@kernel.crashing.org> List-Id: <yocto-patches.lists.yoctoproject.org> X-Webhook-Received: from 45-33-107-173.ip.linodeusercontent.com [45.33.107.173] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for <yocto-patches@lists.yoctoproject.org>; Thu, 15 Jan 2026 23:43:50 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/yocto-patches/message/2977 |
| Series |
Consolidated pseudo patches
|
expand
|
diff --git a/test/test-syscall.c b/test/test-syscall.c index 1e21525..9031766 100644 --- a/test/test-syscall.c +++ b/test/test-syscall.c @@ -11,7 +11,7 @@ #include <string.h> #include <errno.h> -int main(int argc, char *argv[]) { +int main() { long rc = 0; #ifdef SYS_renameat2
Compiler is warning about argc and argv not being used. Signed-off-by: Mark Hatle <mark.hatle@kernel.crashing.org> --- test/test-syscall.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)