Skip to content

Commit 412dd4e

Browse files
committed
Fixes fmt issues.
1 parent 3c1b0ee commit 412dd4e

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

src/unix/solarish/mod.rs

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2060,11 +2060,17 @@ extern "C" {
20602060
advice: ::c_int,
20612061
) -> ::c_int;
20622062

2063-
pub fn shmat(shmid: ::c_int, shmaddr: *const ::c_void,
2064-
shmflg: ::c_int) -> *mut ::c_void;
2065-
2066-
pub fn shmctl(shmid: ::c_int, cmd: ::c_int,
2067-
buf: *mut ::shmid_ds) -> ::c_int;
2063+
pub fn shmat(
2064+
shmid: ::c_int,
2065+
shmaddr: *const ::c_void,
2066+
shmflg: ::c_int,
2067+
) -> *mut ::c_void;
2068+
2069+
pub fn shmctl(
2070+
shmid: ::c_int,
2071+
cmd: ::c_int,
2072+
buf: *mut ::shmid_ds,
2073+
) -> ::c_int;
20682074

20692075
pub fn shmdt(shmaddr: *const ::c_void) -> ::c_int;
20702076

0 commit comments

Comments
 (0)