From 6804e33d757a4fbe2a0c4f5aba299aea8ab863e0 Mon Sep 17 00:00:00 2001 From: ivmarkov Date: Wed, 10 Aug 2022 16:41:31 +0300 Subject: [PATCH] ESP-IDF - add missing double-colon --- src/unix/newlib/espidf/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unix/newlib/espidf/mod.rs b/src/unix/newlib/espidf/mod.rs index 96e604c674725..804cd66454f46 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;