]> git.lizzy.rs Git - rust.git/blobdiff - library/std/src/sys/unix/l4re.rs
Rollup merge of #84320 - jsha:details-implementors, r=Manishearth,Nemo157,GuillaumeGomez
[rust.git] / library / std / src / sys / unix / l4re.rs
index d60a4b5591fae39f7b9c90f050bf3db2a3fe05f6..3cf637c82285af801e14643a4875b6f19adcd4c1 100644 (file)
@@ -1,6 +1,9 @@
 macro_rules! unimpl {
     () => {
-        return Err(io::Error::new_const(io::ErrorKind::Other, &"No networking available on L4Re."));
+        return Err(io::Error::new_const(
+            io::ErrorKind::Unsupported,
+            &"No networking available on L4Re.",
+        ));
     };
 }