Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9c8b7c8

Browse files
committedNov 2, 2020
Remove trailing comma to keep f macro happy.
1 parent 9f0dbb2 commit 9c8b7c8

File tree

1 file changed

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

1 file changed

+1
-1
lines changed
 

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -2359,7 +2359,7 @@ f! {
23592359
fd: ::c_int,
23602360
addr: *mut ::sockaddr,
23612361
len: *mut ::socklen_t,
2362-
flg: ::c_int,
2362+
flg: ::c_int
23632363
) -> ::c_int {
23642364
syscall(SYS_accept4, fd, addr, len, flg) as ::c_int
23652365
}

0 commit comments

Comments
 (0)
Please sign in to comment.