Skip to content

Commit 11433bf

Browse files
committed
actually show warnings about suppressed output
1 parent ecf6599 commit 11433bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fn_call.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ pub trait EvalContextExt<'a, 'mir, 'tcx: 'a+'mir>: crate::MiriEvalContextExt<'a,
398398
Err(_) => -1,
399399
}
400400
} else {
401-
warn!("Ignored output to FD {}", fd);
401+
eprintln!("Miri: Ignored output to FD {}", fd);
402402
n as i64 // pretend it all went well
403403
}; // now result is the value we return back to the program
404404
this.write_scalar(

0 commit comments

Comments
 (0)