Fix wrong use std::io -> old_io

This commit is contained in:
Michael Neumann 2015-01-29 01:56:59 +01:00
parent c5961ad06d
commit ca0e83cdec
1 changed files with 1 additions and 1 deletions

View File

@ -196,7 +196,7 @@ pub fn load_self() -> Option<Vec<u8>> {
#[cfg(target_os = "dragonfly")]
pub fn load_self() -> Option<Vec<u8>> {
use std::io;
use old_io;
match old_io::fs::readlink(&Path::new("/proc/curproc/file")) {
Ok(path) => Some(path.into_vec()),