Skip to content

Commit

Permalink
Auto merge of #2869 - ivmarkov:master, r=Amanieu
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
bors committed Aug 10, 2022
2 parents e9145c5 + 6804e33 commit 093d2a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/unix/newlib/espidf/mod.rs
Expand Up @@ -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;

Expand Down

0 comments on commit 093d2a4

Please sign in to comment.