Skip to content

Commit 3096784

Browse files
committed
openbsd: break lines too long
1 parent fcb30a0 commit 3096784

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/liblibc/lib.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4195,8 +4195,10 @@ pub mod consts {
41954195
pub const IP_HDRINCL: c_int = 2;
41964196
pub const IP_ADD_MEMBERSHIP: c_int = 12;
41974197
pub const IP_DROP_MEMBERSHIP: c_int = 13;
4198-
pub const IPV6_ADD_MEMBERSHIP: c_int = 12; // don't exist, keep same as IP_ADD_MEMBERSHIP
4199-
pub const IPV6_DROP_MEMBERSHIP: c_int = 13; // don't exist, keep same as IP_DROP_MEMBERSHIP
4198+
// don't exist, keep same as IP_ADD_MEMBERSHIP
4199+
pub const IPV6_ADD_MEMBERSHIP: c_int = 12;
4200+
// don't exist, keep same as IP_DROP_MEMBERSHIP
4201+
pub const IPV6_DROP_MEMBERSHIP: c_int = 13;
42004202

42014203
pub const TCP_NODELAY: c_int = 1;
42024204
//pub const TCP_KEEPIDLE: c_int = ;

0 commit comments

Comments
 (0)