diff options
author | Damien George <damien.p.george@gmail.com> | 2017-01-27 23:18:53 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-01-27 23:22:15 +1100 |
commit | 0390bc97eacb0de90af6a148b356faf0dd443d22 (patch) | |
tree | e4be4c894984c56a313dc2cb75581d495f087d8c | |
parent | a0c729681faa3a0b1a6150d5462647bad60038bf (diff) | |
download | micropython-0390bc97eacb0de90af6a148b356faf0dd443d22.tar.gz micropython-0390bc97eacb0de90af6a148b356faf0dd443d22.zip |
lib/oofatfs: Update oofatfs library.
From https://github.com/micropython/oofatfs, branch work-R0.12b,
commit 1e295b40550664bbaac18d95a4b6a58154464d31.
-rw-r--r-- | lib/oofatfs/ff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/oofatfs/ff.c b/lib/oofatfs/ff.c index fca6c4f87d..346f3df970 100644 --- a/lib/oofatfs/ff.c +++ b/lib/oofatfs/ff.c @@ -4803,7 +4803,7 @@ FRESULT f_setlabel ( dj.obj.fs = fs; /* Get length of given volume label */ - for (slen = 0; (UINT)label[slen] >= ' '; slen++) ; /* Get name length */ + for (slen = 0; (UINT)label[slen] >= ' '; slen++) { } /* Get name length */ #if _FS_EXFAT if (fs->fs_type == FS_EXFAT) { /* On the exFAT volume */ |