fix the return type of leavefs
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2249 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
parent
853b1259b0
commit
3675f263cb
|
@ -105,7 +105,7 @@ int dfs_elm_mount(struct dfs_filesystem *fs, unsigned long rwflag, const void *d
|
|||
if (result == FR_OK)
|
||||
{
|
||||
extern FRESULT chk_mounted(const TCHAR **path, FATFS **rfs, BYTE chk_wp);
|
||||
extern void leavefs(FATFS* fs, int res);
|
||||
extern int leavefs(FATFS* fs, int res);
|
||||
char driver[16];
|
||||
const char * path;
|
||||
DIR dj;
|
||||
|
|
|
@ -4020,7 +4020,7 @@ int elm_get_vol(FATFS *fat)
|
|||
}
|
||||
#endif
|
||||
|
||||
void leavefs(FATFS* fs, int res)
|
||||
int leavefs(FATFS* fs, int res)
|
||||
{
|
||||
LEAVE_FF(fs, res);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue