Skip to content

Commit 4db2303

Browse files
committed
fixed the missing crate issue.
CoAuthored by : Bradley Landherr <https://github.com/landhb>
1 parent 1143268 commit 4db2303

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/unix/mod.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -262,16 +262,16 @@ cfg_if! {
262262
}
263263
}
264264
impl Eq for __c_anonymous_sigaction_handler{}
265-
impl ::fmt::Debug for __c_anonymous_sigaction_handler {
266-
fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result
265+
impl fmt::Debug for __c_anonymous_sigaction_handler {
266+
fn fmt(&self, f: &mut fmt::Formatter) -> ::fmt::Result
267267
{
268268
f.debug_struct("sigaction_t")
269269
.field("value", unsafe{ &self.default })
270270
.finish()
271271
}
272272
}
273-
impl ::hash::Hash for __c_anonymous_sigaction_handler {
274-
fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
273+
impl hash::Hash for __c_anonymous_sigaction_handler {
274+
fn hash<H: hash::Hasher>(&self, state: &mut H) {
275275
unsafe{ self.default.hash(state) };
276276
}
277277
}

0 commit comments

Comments
 (0)