summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/errno.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/errno.rs b/src/errno.rs
index 160c655c..fd91d012 100644
--- a/src/errno.rs
+++ b/src/errno.rs
@@ -556,8 +556,8 @@ mod consts {
EHWPOISON = 133,
}
- pub const EWOULDBLOCK: Errno = EAGAIN;
- pub const EDEADLOCK: Errno = EDEADLK;
+ pub const EWOULDBLOCK: Errno = Errno::EAGAIN;
+ pub const EDEADLOCK: Errno = Errno::EDEADLK;
}
#[cfg(any(target_os = "macos", target_os = "ios"))]