examples/l2fwd-crypto: fix typo in error message

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

Fixes: 387259bd6c ("examples/l2fwd-crypto: add sample application")
Cc: stable@dpdk.org

Signed-off-by: Ali Alnubani <alialnu@nvidia.com>
This commit is contained in:
Ali Alnubani 2022-10-09 20:58:49 +03:00 committed by Akhil Goyal
parent 3b5b854b7d
commit 26fbb735e3

View File

@ -2781,7 +2781,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) {