Skip to content

Commit 4b8841a

Browse files
committed
Auto merge of #2595 - Itus-Shield:master, r=Amanieu
mips64: add missing ENOTSUP const ENOTSUP was added to Mips but not Mips64. Signed-off-by: Donald Hoskins <grommish@gmail.com> Reference Issue rust-lang/rust#91976
2 parents f7ecd5d + ba8ad25 commit 4b8841a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/unix/linux_like/linux/musl/b64/mips64.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -505,6 +505,7 @@ pub const ENOPROTOOPT: ::c_int = 99;
505505
pub const EPROTONOSUPPORT: ::c_int = 120;
506506
pub const ESOCKTNOSUPPORT: ::c_int = 121;
507507
pub const EOPNOTSUPP: ::c_int = 122;
508+
pub const ENOTSUP: ::c_int = EOPNOTSUPP;
508509
pub const EPFNOSUPPORT: ::c_int = 123;
509510
pub const EAFNOSUPPORT: ::c_int = 124;
510511
pub const EADDRINUSE: ::c_int = 125;

0 commit comments

Comments
 (0)