Skip to content

Commit

Permalink
Fix compile errors
Browse files Browse the repository at this point in the history
  • Loading branch information
suchmememanyskill committed Dec 15, 2024
1 parent abbb0b2 commit 211fe15
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ Files SerialKlipperPrinter::get_files()
files_result.success = false;
JsonDocument doc;
LOG_F(("Heap space pre-file-parse: %d bytes\n", esp_get_free_heap_size()));
std::list<FileSystemFile> files;
std::list<KlipperFileSystemFile> files;

auto timer_request = millis();
bool result = make_serial_request(doc, 5000, HttpGet, "/server/files/list");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,6 @@ PrinterDataMinimal OctoPrinter::fetch_min()

{
HTTPClient client;
int http_code = 0;
configure_http_client(client, "/api/printer", true, 1000, printer_config);
int http_code = client.GET();

Expand Down

0 comments on commit 211fe15

Please sign in to comment.