Skip to content

Commit

Permalink
Merge pull request #133 from raomin/master
Browse files Browse the repository at this point in the history
Fix type mismatch in error reporting
  • Loading branch information
chrisjoyce911 committed Jul 17, 2023
2 parents feefebb + 4767246 commit facd0ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/esp32FOTA.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ bool esp32FOTA::execOTA( int partition, bool restart_after )
}

if (!F_UpdateEnd()) {
log_e("An Update Error Occurred. Error #: %s", F_Update.getError());
log_e("An Update Error Occurred. Error #: %d", F_Update.getError());
delete[] signature;
return false;
}
Expand Down

0 comments on commit facd0ee

Please sign in to comment.