FATFileSystem fork with fixes
Fork of FATFileSystem by
Revision 8:2915138689f0, committed 2016-07-14
- Comitter:
- melse
- Date:
- Thu Jul 14 12:53:44 2016 +0000
- Parent:
- 7:094f84646b9f
- Commit message:
- Fix FATFileSystem.cpp: _name in FileLike is now private, use getName instead
Changed in this revision
FATFileSystem.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/FATFileSystem.cpp Fri Dec 11 16:16:25 2015 +0000 +++ b/FATFileSystem.cpp Thu Jul 14 12:53:44 2016 +0000 @@ -49,7 +49,7 @@ _ffs[i] = this; _fsid[0] = '0' + i; _fsid[1] = '\0'; - debug_if(FFS_DBG, "Mounting [%s] on ffs drive [%s]\n", _name, _fsid); + debug_if(FFS_DBG, "Mounting [%s] on ffs drive [%s]\n", getName(), _fsid); f_mount(&_fs, _fsid, 0); return; } @@ -67,7 +67,7 @@ } FileHandle *FATFileSystem::open(const char* name, int flags) { - debug_if(FFS_DBG, "open(%s) on filesystem [%s], drv [%s]\n", name, _name, _fsid); + debug_if(FFS_DBG, "open(%s) on filesystem [%s], drv [%s]\n", name, getName(), _fsid); char n[64]; sprintf(n, "%s:/%s", _fsid, name);