Skip to content

Commit

Permalink
test/hash: fix creation error log
Browse files Browse the repository at this point in the history
[ upstream commit 1afb336d8510cb9e28ca5cc25af3bb95698528c8 ]

Caught while running meson test:
hash creation failedTest Failed

Add missing \n.

Fixes: 0eb3726 ("test/hash: add test for read/write concurrency")

Signed-off-by: Min Zhou <zhoumin@loongson.cn>
  • Loading branch information
zhoumin2 authored and bluca committed Nov 23, 2023
1 parent a6a44fd commit 27219f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/test/test_hash_readwrite.c
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ init_params(int use_ext, int use_htm, int rw_lf, int use_jhash)

handle = rte_hash_create(&hash_params);
if (handle == NULL) {
printf("hash creation failed");
printf("hash creation failed\n");
return -1;
}

Expand Down

0 comments on commit 27219f6

Please sign in to comment.