Commit e23ae639 authored by Daniel Campora's avatar Daniel Campora

cc3200: Fix bug in ffconf regarding '/flash' string length.

This bug was introduced when renaming '/sflash' to '/flash'.
parent 31f6a6fa
......@@ -83,7 +83,7 @@ void ff_get_volname(BYTE vol, TCHAR **dest) {
#endif
{
memcpy(*dest, "/flash", 6);
*dest += 7;
*dest += 6;
}
#if MICROPY_HW_HAS_SDCARD
else
......
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