Skip to content

Commit 629b518

Browse files
de-vri-esJohnTitor
andauthored
Fix call to syscall for 64 bit Android.
Co-authored-by: Yuki Okushi <[email protected]>
1 parent 446f7a7 commit 629b518

File tree

1 file changed

+1
-1
lines changed
  • src/unix/linux_like/android/b64

1 file changed

+1
-1
lines changed

src/unix/linux_like/android/b64/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ f! {
317317
len: *mut ::socklen_t,
318318
flg: ::c_int
319319
) -> ::c_int {
320-
syscall(SYS_accept4, fd, addr, len, flg) as ::c_int
320+
::syscall(SYS_accept4, fd, addr, len, flg) as ::c_int
321321
}
322322
}
323323

0 commit comments

Comments
 (0)