Skip to content

Commit a5bd4b5

Browse files
committed
Fix style
1 parent 1ff3817 commit a5bd4b5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/unix/notbsd/linux/other/b64/aarch64.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,6 @@ pub const TIOCSWINSZ: ::c_ulong = 0x5414;
487487
pub const FIONREAD: ::c_ulong = 0x541B;
488488

489489
// Syscall table
490-
<<<<<<< HEAD
491490
pub const SYS_io_setup: ::c_ulong = 0;
492491
pub const SYS_io_destroy: ::c_ulong = 1;
493492
pub const SYS_io_submit: ::c_ulong = 2;

src/unix/notbsd/linux/other/b64/powerpc64.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,6 @@ pub const TIOCSWINSZ: ::c_ulong = 0x80087467;
484484
pub const FIONREAD: ::c_ulong = 0x4004667f;
485485

486486
// Syscall table
487-
<<<<<<< HEAD
488487
pub const SYS_restart_syscall: ::c_ulong = 0;
489488
pub const SYS_exit: ::c_ulong = 1;
490489
pub const SYS_fork: ::c_ulong = 2;

src/unix/notbsd/linux/other/mod.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ s! {
4444

4545
#[cfg(any(target_arch = "aarch64",
4646
target_arch = "sparc64",
47-
all(target_pointer_width = "32", not(target_arch = "x86_64"))))]
47+
all(target_pointer_width = "32",
48+
not(target_arch = "x86_64"))))]
4849
pub ut_session: ::c_long,
4950
#[cfg(any(target_arch = "aarch64",
5051
target_arch = "sparc64",
@@ -53,7 +54,8 @@ s! {
5354

5455
#[cfg(not(any(target_arch = "aarch64",
5556
target_arch = "sparc64",
56-
all(target_pointer_width = "32", not(target_arch = "x86_64")))))]
57+
all(target_pointer_width = "32",
58+
not(target_arch = "x86_64")))))]
5759
pub ut_session: ::int32_t,
5860
#[cfg(not(any(target_arch = "aarch64",
5961
target_arch = "sparc64",

0 commit comments

Comments
 (0)