Skip to content

Commit 1692d12

Browse files
author
The Miri Cronjob Bot
committed
fmt
1 parent 4d824fd commit 1692d12

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/tools/miri/tests/fail/data_race/local_variable_read_race.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ fn main() {
2929
// when it actually happened), we'd miss the UB in this test.
3030
// Also, the UB error should point at the write above, not the addr-of here.
3131
P.store(std::ptr::addr_of_mut!(val), Relaxed);
32-
32+
3333
// Wait for the thread to be done.
3434
t1.join().unwrap();
3535

src/tools/miri/tests/fail/data_race/local_variable_write_race.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ fn main() {
2828
// when it actually happened), we'd miss the UB in this test.
2929
// Also, the UB error should point at the write above, not the addr-of here.
3030
P.store(std::ptr::addr_of_mut!(val), Relaxed);
31-
31+
3232
// Wait for the thread to be done.
3333
t1.join().unwrap();
3434

0 commit comments

Comments
 (0)