1
Fork 0

Update variable name to fix unused_variables warning

This commit is contained in:
Duo Wang 2023-11-10 12:51:41 -08:00 committed by GitHub
parent d4c86cfc49
commit ed87ecc4d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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()
}