Skip to content

Commit

Permalink
fs
Browse files Browse the repository at this point in the history
  • Loading branch information
cotestatnt committed Jan 13, 2024
1 parent f551a51 commit 9104d05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/csvLogger/csvLogger.ino
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ void setup() {
server.setFsInfoCallback([](fsInfo_t* fsInfo) {
fsInfo->totalBytes = LittleFS.totalBytes();
fsInfo->usedBytes = LittleFS.usedBytes();
strcpy(fsInfo->fsName, "LittleFS");
fsInfo->fsName = "LittleFS";
});
#endif

Expand Down

0 comments on commit 9104d05

Please sign in to comment.