Skip to content

Commit 14e178c

Browse files
committed
Auto merge of #2868 - teamplayer3:master, r=Amanieu
Bump to 0.2.130 Quick fix for target `riscv32imc-esp-espidf`.
2 parents e9145c5 + f727202 commit 14e178c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libc"
3-
version = "0.2.129"
3+
version = "0.2.130"
44
authors = ["The Rust Project Developers"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"

libc-test/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libc-test"
3-
version = "0.2.129"
3+
version = "0.2.130"
44
authors = ["The Rust Project Developers"]
55
license = "MIT OR Apache-2.0"
66
build = "build.rs"
@@ -12,7 +12,7 @@ A test crate for the libc crate.
1212

1313
[dependencies.libc]
1414
path = ".."
15-
version = "0.2.129"
15+
version = "0.2.130"
1616
default-features = false
1717

1818
[build-dependencies]

src/unix/newlib/espidf/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ pub const MSG_MORE: ::c_int = 0x10;
8585
pub const MSG_NOSIGNAL: ::c_int = 0x20;
8686
pub const MSG_TRUNC: ::c_int = 0x04;
8787
pub const MSG_CTRUNC: ::c_int = 0x08;
88-
pub const MSG_EOR: c_int = 0x08;
88+
pub const MSG_EOR: ::c_int = 0x08;
8989

9090
pub const PTHREAD_STACK_MIN: ::size_t = 768;
9191

0 commit comments

Comments
 (0)