0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2025-01-31 14:12:52 +00:00

CardReader cleanup

This commit is contained in:
Scott Lahteine 2020-09-27 16:50:53 -05:00
parent 4bd1ecf8a7
commit 4648351270

View file

@ -810,7 +810,7 @@ const char* CardReader::diveToFile(const bool update_cwd, SdFile*& curDir, const
// Open curDir
if (!sub->open(curDir, dosSubdirname, O_READ)) {
SERIAL_ECHOLNPAIR(STR_SD_OPEN_FILE_FAIL, dosSubdirname, ".");
openFailed(dosSubdirname);
return nullptr;
}