about summary refs log tree commit diff
path: root/library/std/src/sys/pal/unix/l4re.rs
diff options
context:
space:
mode:
authorjoboet <jonasboettiger@icloud.com>2024-11-25 13:49:25 +0100
committerjoboet <jonasboettiger@icloud.com>2024-11-26 18:38:24 +0100
commitc14d137bfc5133f5a38fad2f58e30fed9c47ffe2 (patch)
tree39c74cdea7465778402cd3bcba499b9317d6c606 /library/std/src/sys/pal/unix/l4re.rs
parentd39afacbdfbc4fb1f8a6dcdb4af7c357bae8f7db (diff)
downloadrust-c14d137bfc5133f5a38fad2f58e30fed9c47ffe2.tar.gz
rust-c14d137bfc5133f5a38fad2f58e30fed9c47ffe2.zip
std: update internal uses of `io::const_error!`
Diffstat (limited to 'library/std/src/sys/pal/unix/l4re.rs')
-rw-r--r--library/std/src/sys/pal/unix/l4re.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/sys/pal/unix/l4re.rs b/library/std/src/sys/pal/unix/l4re.rs
index 52d39dcfb16..37dd370c514 100644
--- a/library/std/src/sys/pal/unix/l4re.rs
+++ b/library/std/src/sys/pal/unix/l4re.rs
@@ -1,6 +1,6 @@
 macro_rules! unimpl {
     () => {
-        return Err(io::const_io_error!(
+        return Err(io::const_error!(
             io::ErrorKind::Unsupported,
             "No networking available on L4Re.",
         ));