Skip to content

Commit 12c8888

Browse files
committed
Formatting.
1 parent a72a929 commit 12c8888

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/shims/posix/linux/sync.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ pub fn futex<'tcx>(
6363
let bitset = this.read_scalar(&args[6])?.to_u32()?;
6464

6565
if bitset != u32::MAX {
66-
throw_unsup_format!("Miri does not support `futex` syscall with `op=FUTEX_WAIT_BITSET` with a bitset other than UINT_MAX");
66+
throw_unsup_format!(
67+
"Miri does not support `futex` syscall with `op=FUTEX_WAIT_BITSET` with a bitset other than UINT_MAX"
68+
);
6769
}
6870
} else {
6971
if args.len() < 5 {

0 commit comments

Comments
 (0)