Formatting.

This commit is contained in:
Mara Bos 2022-04-06 23:13:47 +02:00
parent a72a929b19
commit 12c88886b0

View File

@ -63,7 +63,9 @@ pub fn futex<'tcx>(
let bitset = this.read_scalar(&args[6])?.to_u32()?;
if bitset != u32::MAX {
throw_unsup_format!("Miri does not support `futex` syscall with `op=FUTEX_WAIT_BITSET` with a bitset other than UINT_MAX");
throw_unsup_format!(
"Miri does not support `futex` syscall with `op=FUTEX_WAIT_BITSET` with a bitset other than UINT_MAX"
);
}
} else {
if args.len() < 5 {