Skip to content

Commit

Permalink
Update libraries/SD/examples/listFilesEnhanced/listfilesEnhanced.ino
Browse files Browse the repository at this point in the history
Co-authored-by: Max Prokhorov <[email protected]>
  • Loading branch information
hasenradball and mcspr authored Nov 19, 2024
1 parent ec1f91e commit 4945785
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ void collectDirectories(const String &dirname, std::vector<String> &directories)
File file = root.openNextFile();
while (file) {

Check failure on line 94 in libraries/SD/examples/listFilesEnhanced/listfilesEnhanced.ino

View workflow job for this annotation

GitHub Actions / clang-format

Run tests/restyle.sh and re-commit libraries/SD/examples/listFilesEnhanced/listfilesEnhanced.ino

File libraries/SD/examples/listFilesEnhanced/listfilesEnhanced.ino failed clang-format style check. (lines 94)
if (file.isDirectory()) {
String fullPath = joinPath(dirname, file.name()); // Vollständigen Pfad erstellen
String fullPath = joinPath(dirname, file.name());
collectDirectories(fullPath, directories); // Rekursiver Aufruf
}
file = root.openNextFile();
Expand Down

0 comments on commit 4945785

Please sign in to comment.