Skip to content

Commit 1fcee64

Browse files
committed
fix println FileSystem_Helper
1 parent 081845c commit 1fcee64

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/FileSystem_Helper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ namespace FileSystem_Helper
3232
void ListFiles(const String &filter)
3333
{
3434
print("Listing files ");
35-
filter != "" ? println(" with filter : <", filter, ">") : println(" :");
35+
filter != "" ? println(" with filter : <%s>", filter.c_str()) : println(" :");
3636

3737
File root = SPIFFS.open("/");
3838
if (!root)

0 commit comments

Comments
 (0)