We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4e43bfe + 1819f5e commit e3787bdCopy full SHA for e3787bd
src/tools/miri/src/shims/native_lib/trace/child.rs
@@ -228,9 +228,10 @@ pub unsafe fn init_sv() -> Result<(), SvInitError> {
228
match init {
229
// The "Ok" case means that we couldn't ptrace.
230
Ok(e) => return Err(e),
231
- Err(p) => {
+ Err(_p) => {
232
eprintln!(
233
- "Supervisor process panicked!\n{p:?}\n\nTry running again without using the native-lib tracer."
+ "Supervisor process panicked!\n\"
234
+ Try running again without `-Zmiri-native-lib-enable-tracing`."
235
);
236
std::process::exit(1);
237
}
0 commit comments