Skip to content

Commit f8b3d5c

Browse files
committed
rollup merge of #21733: mneumann/fix-io-rename-df
2 parents c0705c1 + ca0e83c commit f8b3d5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/sys/unix/os.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ pub fn load_self() -> Option<Vec<u8>> {
196196

197197
#[cfg(target_os = "dragonfly")]
198198
pub fn load_self() -> Option<Vec<u8>> {
199-
use std::io;
199+
use old_io;
200200

201201
match old_io::fs::readlink(&Path::new("/proc/curproc/file")) {
202202
Ok(path) => Some(path.into_vec()),

0 commit comments

Comments
 (0)