esp8266/modesp: Fix a typo, print -> printf.

This commit is contained in:
TheSpooler 2017-01-02 21:50:18 -05:00 committed by Damien George
parent 3f9c45efd1
commit 3d96201165
1 changed files with 1 additions and 1 deletions

View File

@ -652,7 +652,7 @@ STATIC mp_obj_t esp_check_fw(void) {
uint32_t size = *(uint32_t*)(fw_start + 0x8ffc);
printf("size: %d\n", size);
if (size > 1024 * 1024) {
print("Invalid size\n");
printf("Invalid size\n");
return mp_const_false;
}
MD5Init(&ctx);