From a637940be73376cedd691a4c79d44d623ae85081 Mon Sep 17 00:00:00 2001 From: Songqian Li Date: Fri, 8 Aug 2025 11:39:05 +0800 Subject: [PATCH] ci: Fix link check failed ### Errors in src/main.rs * [404] | Rejected status code (this depends on your "accept" configuration) : Not Found Signed-off-by: Songqian Li --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 101da1706..56b48d59b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -553,10 +553,10 @@ fn start_vmm(cmd_arguments: ArgMatches) -> Result, Error> { // handler safe functions (writing to stderr) and manipulating signals. unsafe { signal_hook::low_level::register(signal_hook::consts::SIGSYS, || { - eprint!( + eprintln!( "\n==== Possible seccomp violation ====\n\ Try running with `strace -ff` to identify the cause and open an issue: \ - https://github.com/cloud-hypervisor/cloud-hypervisor/issues/new\n" + https://github.com/cloud-hypervisor/cloud-hypervisor/issues/new" ); signal_hook::low_level::emulate_default_handler(SIGSYS).unwrap(); })