From 48af1661b49ad4e3bfb858b39a9e4f4c23c9f16b Mon Sep 17 00:00:00 2001 From: Omree Date: Wed, 9 Jun 2021 17:20:26 +0300 Subject: [PATCH] change error message --- libafl_frida/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libafl_frida/src/lib.rs b/libafl_frida/src/lib.rs index 23a8978911..7ae5ba6962 100644 --- a/libafl_frida/src/lib.rs +++ b/libafl_frida/src/lib.rs @@ -135,7 +135,7 @@ impl FridaOptions { assert_eq!( core_ids.len(), 1, - "[asan_cores] Client should only be enabled on one core" + "Client should only be bound to a single core" ); let core_id = core_ids[0].id; options.enable_asan = asan_cores.contains(&core_id); @@ -147,7 +147,7 @@ impl FridaOptions { assert_eq!( core_ids.len(), 1, - "[cmplog_cores] Client should only be enabled on one core" + "Client should only be bound to a single core" ); let core_id = core_ids[0].id; options.enable_cmplog = cmplog_cores.contains(&core_id);