Commit 3d962011 authored by TheSpooler's avatar TheSpooler Committed by Damien George

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

parent 3f9c45ef
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment