We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee2d449 commit 66a88acCopy full SHA for 66a88ac
cores/esp8266/spiffs_api.cpp
@@ -66,11 +66,11 @@ class SPIFFSImpl : public FSImpl {
66
67
bool rename(const char* pathFrom, const char* pathTo) override {
68
if (!isSpiffsFilenameValid(pathFrom)) {
69
- DEBUGV("SPIFFSImpl::rename: invalid pathFrom=`%s`\r\n", path);
+ DEBUGV("SPIFFSImpl::rename: invalid pathFrom=`%s`\r\n", pathFrom);
70
return false;
71
}
72
if (!isSpiffsFilenameValid(pathTo)) {
73
- DEBUGV("SPIFFSImpl::rename: invalid pathTo=`%s` \r\n", path);
+ DEBUGV("SPIFFSImpl::rename: invalid pathTo=`%s` \r\n", pathTo);
74
75
76
auto rc = SPIFFS_rename(&_fs, pathFrom, pathTo);
0 commit comments