bpf: verifier: Add missing newline on verbose() call

The print was missing a newline.

Signed-off-by: Daniel Xu <dxu@dxuuu.xyz>
Link: https://lore.kernel.org/r/59cbe18367b159cd470dc6d5c652524c1dc2b984.1736886479.git.dxu@dxuuu.xyz
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
This commit is contained in:
Daniel Xu
2025-01-16 17:51:10 -08:00
committed by Alexei Starovoitov
parent 556a399406
commit b8a81b5dd6
+1 -1
View File
@@ -7739,7 +7739,7 @@ static int check_stack_range_initialized(
slot = -i - 1;
spi = slot / BPF_REG_SIZE;
if (state->allocated_stack <= slot) {
verbose(env, "verifier bug: allocated_stack too small");
verbose(env, "verifier bug: allocated_stack too small\n");
return -EFAULT;
}