mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-11 14:07:00 +03:00
fix printf missing \n
This commit is contained in:
@@ -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());
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user