Skip to content

Commit 94e097b

Browse files
hasenradballmcspr
andauthored
Update libraries/SD/examples/listFilesEnhanced/listfilesEnhanced.ino
Co-authored-by: Max Prokhorov <[email protected]>
1 parent 4945785 commit 94e097b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/SD/examples/listFilesEnhanced/listfilesEnhanced.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ void collectDirectories(const String &dirname, std::vector<String> &directories)
9494
while (file) {
9595
if (file.isDirectory()) {
9696
String fullPath = joinPath(dirname, file.name());
97-
collectDirectories(fullPath, directories); // Rekursiver Aufruf
97+
collectDirectories(fullPath, directories);
9898
}
9999
file = root.openNextFile();
100100
}

0 commit comments

Comments
 (0)