From: "huzaifa.rahman" <huzaifa.rahman@emumba.com>
To: dev@dpdk.org
Cc: "huzaifa.rahman" <huzaifa.rahman@emumba.com>
Subject: [PATCH] ethtool: correct format strings according to the arguments
Date: Thu, 24 Mar 2022 10:31:24 +0500 [thread overview]
Message-ID: <20220324053124.8085-1-huzaifa.rahman@emumba.com> (raw)
The corrected format strings are not consistent with the
given arguments. So they are changed accordingly.
Signed-off-by: huzaifa.rahman <huzaifa.rahman@emumba.com>
---
examples/ethtool/ethtool-app/main.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/examples/ethtool/ethtool-app/main.c b/examples/ethtool/ethtool-app/main.c
index 1f011a9321..ea8332e49c 100644
--- a/examples/ethtool/ethtool-app/main.c
+++ b/examples/ethtool/ethtool-app/main.c
@@ -208,7 +208,7 @@ static int worker_main(__rte_unused void *ptr_data)
&ptr_port->mac_addr);
if (ret != 0) {
rte_spinlock_unlock(&ptr_port->lock);
- printf("Failed to get MAC address (port %u): %s",
+ printf("Failed to get MAC address (port %i): %s",
ptr_port->idx_port,
rte_strerror(-ret));
return ret;
@@ -284,11 +284,11 @@ int main(int argc, char **argv)
rte_exit(EXIT_FAILURE, "rte_eal_init(): Failed");
cnt_ports = rte_eth_dev_count_avail();
- printf("Number of NICs: %i\n", cnt_ports);
+ printf("Number of NICs: %u\n", cnt_ports);
if (cnt_ports == 0)
rte_exit(EXIT_FAILURE, "No available NIC ports!\n");
if (cnt_ports > MAX_PORTS) {
- printf("Info: Using only %i of %i ports\n",
+ printf("Info: Using only %u of %i ports\n",
cnt_ports, MAX_PORTS
);
cnt_ports = MAX_PORTS;
--
2.25.1
next reply other threads:[~2022-03-24 5:31 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-24 5:31 huzaifa.rahman [this message]
2022-05-27 5:14 ` Huzaifa Rahman
2023-07-03 22:32 ` Stephen Hemminger
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220324053124.8085-1-huzaifa.rahman@emumba.com \
--to=huzaifa.rahman@emumba.com \
--cc=dev@dpdk.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).