From: Anatoly Burakov Date: Thu, 21 Dec 2017 18:19:43 +0000 (+0000) Subject: test/memzone: fix copy-paste typo X-Git-Tag: spdx-start~237 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=97d144a8a2220792b60d191425b6d0a1cd89fdeb;p=dpdk.git test/memzone: fix copy-paste typo Fixes: b77b5639726e ("mem: add huge page sizes for IBM Power") Cc: stable@dpdk.org Signed-off-by: Anatoly Burakov --- diff --git a/test/test/test_memzone.c b/test/test/test_memzone.c index 68c20dca07..01bbc4eeb1 100644 --- a/test/test/test_memzone.c +++ b/test/test/test_memzone.c @@ -292,7 +292,7 @@ test_memzone_reserve_flags(void) mz = rte_memzone_reserve("flag_zone_16M_HINT", size, SOCKET_ID_ANY, RTE_MEMZONE_16MB|RTE_MEMZONE_SIZE_HINT_ONLY); if (mz == NULL) { - printf("MEMZONE FLAG 2MB\n"); + printf("MEMZONE FLAG 16MB\n"); return -1; } if (mz->hugepage_sz != RTE_PGSIZE_16M) {