Skip to content

Commit

Permalink
Auto merge of #124506 - ivmarkov:master, r=jhpratt
Browse files Browse the repository at this point in the history
Fix ESP IDF build broken by #124210

Subject says it all I hope.

Fix is trivial, thanks to the contributors of #124210 really considering these Tier 3 targets in their change-set (even if ESP IDF was accidentally omitted).
  • Loading branch information
bors committed Apr 29, 2024
2 parents 5b1d58c + fa6db4c commit c65b2dc
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions library/std/src/sys/pal/unix/fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -893,6 +893,7 @@ impl Drop for Dir {
target_os = "nto",
target_os = "vita",
target_os = "hurd",
target_os = "espidf",
)))]
{
let fd = unsafe { libc::dirfd(self.0) };
Expand Down

0 comments on commit c65b2dc

Please sign in to comment.