Simulator HAL and build targets (#22418)

This commit is contained in:
Chris Pepper
2021-07-22 01:01:23 +01:00
committed by GitHub
parent d819de46d3
commit 21011eefa8
37 changed files with 1847 additions and 16 deletions

View File

@@ -939,7 +939,7 @@ const char* CardReader::diveToFile(const bool update_cwd, SdFile* &inDirPtr, con
while (atom_ptr) {
// Find next subdirectory delimiter
char * const name_end = strchr(atom_ptr, '/');
const char * const name_end = strchr(atom_ptr, '/');
// Last atom in the path? Item found.
if (name_end <= atom_ptr) break;