Skip to content

Commit 8990b9e

Browse files
committed
Fix test
1 parent d2952c9 commit 8990b9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/pass-dep/libc/libc-eventfd.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ fn test_read_write() {
5555
let sized_9_data: [u8; 9];
5656
if cfg!(target_endian = "big") {
5757
// Adjust the data based on the endianess of host system.
58-
sized_9_data = [0, 0, 0, 0, 0, 0, 0, 0, 1];
58+
sized_9_data = [0, 0, 0, 0, 0, 0, 0, 1, 0];
5959
} else {
6060
sized_9_data = [1, 0, 0, 0, 0, 0, 0, 0, 0];
6161
}

0 commit comments

Comments
 (0)