From b9879a8bfcb813e42169d13dca211b31c1225a3f Mon Sep 17 00:00:00 2001 From: Dominik Maier Date: Sat, 12 Aug 2023 03:24:06 +0200 Subject: [PATCH] Fix CI (#1414) --- libafl_bolts/src/core_affinity.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libafl_bolts/src/core_affinity.rs b/libafl_bolts/src/core_affinity.rs index e6f88a3865..07ae81c1a5 100644 --- a/libafl_bolts/src/core_affinity.rs +++ b/libafl_bolts/src/core_affinity.rs @@ -63,7 +63,7 @@ impl CoreId { /// pub fn set_affinity(&self) -> Result<(), Error> { match set_for_current_helper(*self) { - Ok(_) | Err(Error::Unsupported(_, _)) => Ok(()), + Ok(()) | Err(Error::Unsupported(_, _)) => Ok(()), Err(e) => Err(e), } }