From d371bdcc1ec3e8446395f376468ee296070f75a4 Mon Sep 17 00:00:00 2001 From: Yuki Okushi <huyuumi.dev@gmail.com> Date: Sun, 25 Oct 2020 10:37:49 +0900 Subject: [PATCH] Fix `deprecated` attribute for `__error` --- src/unix/bsd/freebsdlike/dragonfly/errno.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unix/bsd/freebsdlike/dragonfly/errno.rs b/src/unix/bsd/freebsdlike/dragonfly/errno.rs index 434ac63a..5fe6bb89 100644 --- a/src/unix/bsd/freebsdlike/dragonfly/errno.rs +++ b/src/unix/bsd/freebsdlike/dragonfly/errno.rs @@ -1,7 +1,7 @@ // DragonFlyBSD's __error function is declared with "static inline", so it must // be implemented in the libc crate, as a pointer to a static thread_local. f! { - #[deprecated(since = "0.2.77", "Use `__errno_location()` instead")] + #[deprecated(since = "0.2.77", note = "Use `__errno_location()` instead")] pub fn __error() -> *mut ::c_int { &mut errno } -- GitLab