From 3d962011653a349308369795c0b010ce67db8d0f Mon Sep 17 00:00:00 2001 From: TheSpooler Date: Mon, 2 Jan 2017 21:50:18 -0500 Subject: [PATCH] esp8266/modesp: Fix a typo, print -> printf. --- esp8266/modesp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);