We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 081845c commit 1fcee64Copy full SHA for 1fcee64
1 file changed
src/FileSystem_Helper.cpp
@@ -32,7 +32,7 @@ namespace FileSystem_Helper
32
void ListFiles(const String &filter)
33
{
34
print("Listing files ");
35
- filter != "" ? println(" with filter : <", filter, ">") : println(" :");
+ filter != "" ? println(" with filter : <%s>", filter.c_str()) : println(" :");
36
37
File root = SPIFFS.open("/");
38
if (!root)
0 commit comments