1
0
Fork 0

selftests/bpf: test_progs: add missing \n to CHECK_FAIL

Copy-paste error from CHECK.

Fixes: d38835b75f ("selftests/bpf: test_progs: remove global fail/success counts")
Signed-off-by: Stanislav Fomichev <sdf@google.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
alistair/sunxi64-5.4-dsi
Stanislav Fomichev 2019-08-30 19:34:27 -07:00 committed by Daniel Borkmann
parent d80507d15d
commit ac915762ea
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ extern struct ipv6_packet pkt_v6;
int __ret = !!(condition); \
if (__ret) { \
test__fail(); \
printf("%s:FAIL:%d ", __func__, __LINE__); \
printf("%s:FAIL:%d\n", __func__, __LINE__); \
} \
__ret; \
})