From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 456ECA0579 for ; Tue, 4 May 2021 02:11:50 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2F5B6410F3; Tue, 4 May 2021 02:11:50 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id DB8474014D; Tue, 4 May 2021 02:11:47 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1086) id 1F24E20B7188; Mon, 3 May 2021 17:11:47 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 1F24E20B7188 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1620087107; bh=zXElkq1AZ0t1CHlsR6GttGHAiU0BykhTn1XOGLWyxmg=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=QKnhSSpcZ+HrISOjUa5PgEQYf8HXjxR+r+fVE/iP0jAdOsaz9M4PqV0Psg6cn6zQi cYiORpZ1VzSKAHgyL52BOiU8sJNZQYJ3WVjAu/hgrZK3CS7P7ueXIhUNAk9as74d+N +bxjndMGy4MtIKpAT8NfF620PqG1G0abih1PNdpQ= Date: Mon, 3 May 2021 17:11:47 -0700 From: Tyler Retzlaff To: Dmitry Kozlyuk Cc: dev@dpdk.org, stable@dpdk.org, Bruce Richardson , John McNamara Message-ID: <20210504001147.GB21458@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <20210502025656.29910-1-dmitry.kozliuk@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210502025656.29910-1-dmitry.kozliuk@gmail.com> User-Agent: Mutt/1.5.21 (2010-09-15) Subject: Re: [dpdk-stable] [dpdk-dev] [PATCH] examples/rxtx_callbacks: fix port ID format specifier X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" On Sun, May 02, 2021 at 05:56:56AM +0300, Dmitry Kozlyuk wrote: > Use "%u" and a cast as in other places when port ID is formatted. > This fixes -Wformat warning with clang 10.0.0 on Windows. > > Fixes: f8244c6399d9 ("ethdev: increase port id range") > Cc: stable@dpdk.org > > Signed-off-by: Dmitry Kozlyuk > --- > examples/rxtx_callbacks/main.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/examples/rxtx_callbacks/main.c b/examples/rxtx_callbacks/main.c > index b57b2fc6bc..9574b6ea0d 100644 > --- a/examples/rxtx_callbacks/main.c > +++ b/examples/rxtx_callbacks/main.c > @@ -329,8 +329,8 @@ main(int argc, char *argv[]) > /* initialize all ports */ > RTE_ETH_FOREACH_DEV(portid) > if (port_init(portid, mbuf_pool) != 0) > - rte_exit(EXIT_FAILURE, "Cannot init port %"PRIu8"\n", > - portid); how come not just `% " PRIu16 "\n"' ? what was the -Wformat clang on windows complaint?