From: Pablo de Lara Date: Thu, 22 Jun 2017 12:02:34 +0000 (+0100) Subject: app/crypto-perf: fix error message X-Git-Tag: spdx-start~2934 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=0dfef60553e055b4aee36f7d9e9f3b662668a01b;p=dpdk.git app/crypto-perf: fix error message Fixes: f6cefe253cc8 ("app/crypto-perf: add range/list of sizes") Cc: stable@dpdk.org Signed-off-by: Pablo de Lara Acked-by: Fiona Trahe --- diff --git a/app/test-crypto-perf/cperf_options_parsing.c b/app/test-crypto-perf/cperf_options_parsing.c index d172671fb5..63ba37cf4b 100644 --- a/app/test-crypto-perf/cperf_options_parsing.c +++ b/app/test-crypto-perf/cperf_options_parsing.c @@ -312,7 +312,7 @@ parse_buffer_sz(struct cperf_options *opts, const char *arg) &opts->min_buffer_size, &opts->max_buffer_size); if (ret < 0) { - RTE_LOG(ERR, USER1, "failed to parse burst size/s\n"); + RTE_LOG(ERR, USER1, "failed to parse buffer size/s\n"); return -1; } opts->buffer_size_count = ret;