Skip to content

Commit 0e44a29

Browse files
committed
Fixed unix typo
1 parent 61fb022 commit 0e44a29

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ mod log {
2020
macro_rules! info (($($tt:tt)*) => {{}});
2121
macro_rules! warn (($($tt:tt)*) => {{}});
2222
macro_rules! error (($($tt:tt)*) => {{}});
23-
2423
pub(crate) use {debug, trace};
2524
}
2625

src/unix.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use std::os::unix::io::RawFd;
22
use std::ptr::null_mut;
33

4-
use cargo::log::*;
4+
use crate::log::*;
55
use nix::fcntl::OFlag;
66
use nix::sys::mman::{mmap, munmap, shm_open, shm_unlink, MapFlags, ProtFlags};
77
use nix::sys::stat::{fstat, Mode};

0 commit comments

Comments
 (0)