summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Hübener <alex.teamplayer@gmail.com>2022-08-10 08:57:54 +0000
committerAlexander Hübener <alex.teamplayer@gmail.com>2022-08-10 08:57:54 +0000
commitd0e3ff01a808d429baf925bf0e6e5f2273de1ac0 (patch)
tree631800d6ffe6a1264fc37047f8671682ba5be1ba
parente9145c5a42a9268d6f659d2992f34141b53e1ea0 (diff)
downloadrust-libc-d0e3ff01a808d429baf925bf0e6e5f2273de1ac0.tar.gz
fixed type path
-rw-r--r--src/unix/newlib/espidf/mod.rs2
1 files changed, 1 insertions, 1 deletions
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;