summaryrefslogtreecommitdiffstatshomepage
path: root/esp8266
diff options
context:
space:
mode:
Diffstat (limited to 'esp8266')
-rw-r--r--esp8266/modesp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/esp8266/modesp.c b/esp8266/modesp.c
index e162981ffb..b7ce122b17 100644
--- a/esp8266/modesp.c
+++ b/esp8266/modesp.c
@@ -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);