Skip to content

Commit

Permalink
Fix a lint on Rust nightly 1.43.0
Browse files Browse the repository at this point in the history
  • Loading branch information
asomers committed Mar 9, 2020
1 parent 837fb44 commit 5c3fbbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sys/ioctl/bsd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ mod consts {
#[doc(hidden)]
pub const IN: ioctl_num_type = 0x8000_0000;
#[doc(hidden)]
pub const INOUT: ioctl_num_type = (IN|OUT);
pub const INOUT: ioctl_num_type = IN|OUT;
#[doc(hidden)]
pub const IOCPARM_MASK: ioctl_num_type = 0x1fff;
}
Expand Down

0 comments on commit 5c3fbbb

Please sign in to comment.