<div dir="ltr">Hi,<div style="user-select: auto;"><br style="user-select: auto;"></div><div style="user-select: auto;">The following tests are failing but my patch is not related to anything related to these. Please re-run the tests.</div><div style="user-select: auto;"><pre style="white-space:pre-wrap;color:rgb(0,0,0)">Failed Tests:
                - mtu_update
                - scatter</pre><pre style="white-space:pre-wrap;color:rgb(0,0,0)"><span style="color:rgb(34,34,34);font-family:Arial,Helvetica,sans-serif;white-space:normal"><br style="user-select: auto;"></span></pre><pre style="white-space:pre-wrap;color:rgb(0,0,0)"><span style="color:rgb(34,34,34);font-family:Arial,Helvetica,sans-serif;white-space:normal">Thanks,</span><br style="user-select: auto;"></pre><pre style="white-space:pre-wrap;color:rgb(0,0,0)"><span style="color:rgb(34,34,34);font-family:Arial,Helvetica,sans-serif;white-space:normal">Huzaifa</span></pre></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Thu, Mar 24, 2022 at 10:31 AM huzaifa.rahman <<a href="mailto:huzaifa.rahman@emumba.com">huzaifa.rahman@emumba.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">The corrected format strings are not consistent with the<br>
given arguments. So they are changed accordingly.<br>
<br>
Signed-off-by: huzaifa.rahman <<a href="mailto:huzaifa.rahman@emumba.com" target="_blank">huzaifa.rahman@emumba.com</a>><br>
---<br>
 examples/ethtool/ethtool-app/main.c | 6 +++---<br>
 1 file changed, 3 insertions(+), 3 deletions(-)<br>
<br>
diff --git a/examples/ethtool/ethtool-app/main.c b/examples/ethtool/ethtool-app/main.c<br>
index 1f011a9321..ea8332e49c 100644<br>
--- a/examples/ethtool/ethtool-app/main.c<br>
+++ b/examples/ethtool/ethtool-app/main.c<br>
@@ -208,7 +208,7 @@ static int worker_main(__rte_unused void *ptr_data)<br>
                                        &ptr_port->mac_addr);<br>
                                if (ret != 0) {<br>
                                        rte_spinlock_unlock(&ptr_port->lock);<br>
-                                       printf("Failed to get MAC address (port %u): %s",<br>
+                                       printf("Failed to get MAC address (port %i): %s",<br>
                                               ptr_port->idx_port,<br>
                                               rte_strerror(-ret));<br>
                                        return ret;<br>
@@ -284,11 +284,11 @@ int main(int argc, char **argv)<br>
                rte_exit(EXIT_FAILURE, "rte_eal_init(): Failed");<br>
<br>
        cnt_ports = rte_eth_dev_count_avail();<br>
-       printf("Number of NICs: %i\n", cnt_ports);<br>
+       printf("Number of NICs: %u\n", cnt_ports);<br>
        if (cnt_ports == 0)<br>
                rte_exit(EXIT_FAILURE, "No available NIC ports!\n");<br>
        if (cnt_ports > MAX_PORTS) {<br>
-               printf("Info: Using only %i of %i ports\n",<br>
+               printf("Info: Using only %u of %i ports\n",<br>
                        cnt_ports, MAX_PORTS<br>
                        );<br>
                cnt_ports = MAX_PORTS;<br>
-- <br>
2.25.1<br>
<br>
</blockquote></div>