Skip to content

Commit

Permalink
fix style on OpenBSD
Browse files Browse the repository at this point in the history
  • Loading branch information
asomers committed Sep 7, 2022
1 parent f26839a commit 3a615a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/unix/bsd/netbsdlike/openbsd/mod.rs
Expand Up @@ -1701,7 +1701,7 @@ safe_f! {
let minor = minor as ::dev_t;
let mut dev = 0;
dev |= (major & 0xff) << 8;
dev |= (minor & 0xff);
dev |= minor & 0xff;
dev |= (minor & 0xffff00) << 8;
dev
}
Expand Down

0 comments on commit 3a615a0

Please sign in to comment.