summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2022-08-10 16:49:20 +0000
committerbors <bors@rust-lang.org>2022-08-10 16:49:20 +0000
commit14e178cea44f23e098052ed3730dfc1d33c23f38 (patch)
tree463aaf309b9c794144af85ac904d95d5b02ba767
parente9145c5a42a9268d6f659d2992f34141b53e1ea0 (diff)
parentf727202a4f70cead6327ef71f901be230c93f8bd (diff)
downloadrust-libc-14e178cea44f23e098052ed3730dfc1d33c23f38.tar.gz
Auto merge of #2868 - teamplayer3:master, r=Amanieu0.2.130
Bump to 0.2.130 Quick fix for target `riscv32imc-esp-espidf`.
-rw-r--r--Cargo.toml2
-rw-r--r--libc-test/Cargo.toml4
-rw-r--r--src/unix/newlib/espidf/mod.rs2
3 files changed, 4 insertions, 4 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 3081d5e5b2..873928ecb5 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "libc"
-version = "0.2.129"
+version = "0.2.130"
authors = ["The Rust Project Developers"]
license = "MIT OR Apache-2.0"
readme = "README.md"
diff --git a/libc-test/Cargo.toml b/libc-test/Cargo.toml
index ebfe130ca7..e80fdc1f5e 100644
--- a/libc-test/Cargo.toml
+++ b/libc-test/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "libc-test"
-version = "0.2.129"
+version = "0.2.130"
authors = ["The Rust Project Developers"]
license = "MIT OR Apache-2.0"
build = "build.rs"
@@ -12,7 +12,7 @@ A test crate for the libc crate.
[dependencies.libc]
path = ".."
-version = "0.2.129"
+version = "0.2.130"
default-features = false
[build-dependencies]
diff --git a/src/unix/newlib/espidf/mod.rs b/src/unix/newlib/espidf/mod.rs
index 96e604c674..804cd66454 100644
--- a/src/unix/newlib/espidf/mod.rs
+++ b/src/unix/newlib/espidf/mod.rs
@@ -85,7 +85,7 @@ pub const MSG_MORE: ::c_int = 0x10;
pub const MSG_NOSIGNAL: ::c_int = 0x20;
pub const MSG_TRUNC: ::c_int = 0x04;
pub const MSG_CTRUNC: ::c_int = 0x08;
-pub const MSG_EOR: c_int = 0x08;
+pub const MSG_EOR: ::c_int = 0x08;
pub const PTHREAD_STACK_MIN: ::size_t = 768;