Swap bytes used and total

This commit is contained in:
fvanroie 2022-04-14 20:02:20 +02:00
parent b7afda6cc9
commit c17ca8991d

View File

@ -156,7 +156,7 @@ void filesystemInfo()
Parser::format_bytes(HASP_FS.totalBytes(), total, sizeof(total));
#endif
Log.verbose(TAG_FILE, "Partition size: used: %s / total: %s", total, used);
Log.verbose(TAG_FILE, "Partition size: used: %s / total: %s", used, total);
}
void filesystemList()