You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
warning: use of deprecated constant `libc::ENOATTR`: ENOATTR is not available on Linux; use ENODATA instead
--> src/catfs/file.rs:274:61
|
274 | if my_errno != libc::ENODATA && my_errno != libc::ENOATTR {
| ^^^^^^^^^^^^^
|
= note: `#[warn(deprecated)]` on by default
The newer libc warns:
I added this to handle macOS behavior. Some context: rust-lang/libc#1356 (comment)
The text was updated successfully, but these errors were encountered: