Skip to content

Commit 41b09a1

Browse files
committed
Fix linting errors.
1 parent a9cb77f commit 41b09a1

File tree

1 file changed

+10
-2
lines changed
  • src/unix/linux_like/linux/gnu

1 file changed

+10
-2
lines changed

src/unix/linux_like/linux/gnu/mod.rs

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1042,8 +1042,16 @@ extern "C" {
10421042

10431043
#[link(name = "dl")]
10441044
extern "C" {
1045-
pub fn dlmopen(lmid: Lmid_t, filename: *const ::c_char, flag: ::c_int) -> *mut ::c_void;
1046-
pub fn dlinfo(handle: *mut ::c_void, request: ::c_int, info: *mut ::c_void) -> ::c_int;
1045+
pub fn dlmopen(
1046+
lmid: Lmid_t,
1047+
filename: *const ::c_char,
1048+
flag: ::c_int,
1049+
) -> *mut ::c_void;
1050+
pub fn dlinfo(
1051+
handle: *mut ::c_void,
1052+
request: ::c_int,
1053+
info: *mut ::c_void,
1054+
) -> ::c_int;
10471055
}
10481056

10491057
cfg_if! {

0 commit comments

Comments
 (0)