fix printf missing \n

This commit is contained in:
CaCO3
2022-09-25 15:31:43 +02:00
parent d0b78e7c73
commit 78900defad

View File

@@ -435,7 +435,7 @@ esp_err_t handler_ota_update(httpd_req_t *req)
int _result = stat(fn.c_str(), &file_stat); int _result = stat(fn.c_str(), &file_stat);
printf("Ergebnis %d\n", _result); printf("Ergebnis %d\n", _result);
if (_result == 0) { if (_result == 0) {
printf("Deleting file : %s", fn.c_str()); printf("Deleting file : %s\n", fn.c_str());
/* Delete file */ /* Delete file */
unlink(fn.c_str()); unlink(fn.c_str());
} }