Skip to content

Commit

Permalink
lib: One more clippy fix
Browse files Browse the repository at this point in the history
Signed-off-by: Colin Walters <[email protected]>
  • Loading branch information
cgwalters committed Dec 6, 2024
1 parent a373145 commit fbe632e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/mount.rs
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ pub(crate) fn open_tree_from_pidns(
None,
)
.context("socketpair")?;
const DUMMY_DATA: &[u8] = &[b'!'];
const DUMMY_DATA: &[u8] = b"!";
match unsafe { libc::fork() } {
0 => {
// We're in the child. At this point we know we don't have multiple threads, so we
Expand Down

0 comments on commit fbe632e

Please sign in to comment.