Skip to content

Commit fbe632e

Browse files
committed
lib: One more clippy fix
Signed-off-by: Colin Walters <[email protected]>
1 parent a373145 commit fbe632e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/mount.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ pub(crate) fn open_tree_from_pidns(
163163
None,
164164
)
165165
.context("socketpair")?;
166-
const DUMMY_DATA: &[u8] = &[b'!'];
166+
const DUMMY_DATA: &[u8] = b"!";
167167
match unsafe { libc::fork() } {
168168
0 => {
169169
// We're in the child. At this point we know we don't have multiple threads, so we

0 commit comments

Comments
 (0)