Skip to content

Commit 093d2a4

Browse files
committed
Auto merge of #2869 - ivmarkov:master, r=Amanieu
ESP-IDF - add missing double-colon The previous PR was having one of the new `const`s wrongly defined which broke the ESP-IDF build.
2 parents e9145c5 + 6804e33 commit 093d2a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)