Skip to content

Commit

Permalink
examples/l2fwd-crypto: fix typo in error message
Browse files Browse the repository at this point in the history
[ upstream commit 26fbb73 ]

Fixes spelling in one of the app's exit messages.

Fixes: 387259b ("examples/l2fwd-crypto: add sample application")

Signed-off-by: Ali Alnubani <alialnu@nvidia.com>
  • Loading branch information
alialnu authored and kevintraynor committed Nov 7, 2022
1 parent 6aa04c9 commit 7e842d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/l2fwd-crypto/main.c
Expand Up @@ -2808,7 +2808,7 @@ main(int argc, char **argv)
/* Enable Ethernet ports */
enabled_portcount = initialize_ports(&options);
if (enabled_portcount < 1)
rte_exit(EXIT_FAILURE, "Failed to initial Ethernet ports\n");
rte_exit(EXIT_FAILURE, "Failed to initialize Ethernet ports\n");

/* Initialize the port/queue configuration of each logical core */
RTE_ETH_FOREACH_DEV(portid) {
Expand Down

0 comments on commit 7e842d3

Please sign in to comment.