diff options
| author | Daniel Campora | 2015-08-06 19:20:50 +0200 |
|---|---|---|
| committer | Daniel Campora | 2015-08-09 19:22:21 +0200 |
| commit | e23ae63970c4f987fb2d1d22215850c5e985075c (patch) | |
| tree | 06d458d1d72aa707934715518b0320e38dae6345 /cc3200 | |
| parent | 31f6a6fa70aa9140a6587a1e3f23bb604e5abbca (diff) | |
cc3200: Fix bug in ffconf regarding '/flash' string length.
This bug was introduced when renaming '/sflash' to '/flash'.
Diffstat (limited to 'cc3200')
| -rw-r--r-- | cc3200/fatfs/src/ffconf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cc3200/fatfs/src/ffconf.c b/cc3200/fatfs/src/ffconf.c index 120fb8328..e3c425e33 100644 --- a/cc3200/fatfs/src/ffconf.c +++ b/cc3200/fatfs/src/ffconf.c @@ -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 |
