Skip to content

Commit

Permalink
Update variable name to fix unused_variables warning
Browse files Browse the repository at this point in the history
  • Loading branch information
wdunicornpro authored Nov 10, 2023
1 parent d4c86cf commit ed87ecc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/std/src/sys/unix/os.rs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ pub fn getcwd() -> io::Result<PathBuf> {
}

#[cfg(target_os = "espidf")]
pub fn chdir(p: &path::Path) -> io::Result<()> {
pub fn chdir(_p: &path::Path) -> io::Result<()> {
super::unsupported::unsupported()
}

Expand Down

0 comments on commit ed87ecc

Please sign in to comment.