Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
e23ae639
Commit
e23ae639
authored
Aug 06, 2015
by
Daniel Campora
Browse files
cc3200: Fix bug in ffconf regarding '/flash' string length.
This bug was introduced when renaming '/sflash' to '/flash'.
parent
31f6a6fa
Changes
1
Hide whitespace changes
Inline
Side-by-side
cc3200/fatfs/src/ffconf.c
View file @
e23ae639
...
...
@@ -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
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment