Skip to content

Commit 0986ea0

Browse files
committed
Fix compiler error
1 parent d354555 commit 0986ea0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shims/unix/linux/eventfd.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {
177177
is_nonblock = true;
178178
}
179179
if flags != 0 {
180-
throw_unsup_format!("eventfd: encountered unknown unsupported flags {:#x}");
180+
throw_unsup_format!("eventfd: encountered unknown unsupported flags {:#x}", flags);
181181
}
182182

183183
let fd = this.machine.fds.insert_fd(FileDescriptor::new(Event {

0 commit comments

Comments
 (0)