[armlibc] solve the compiling error

report in #6300
This commit is contained in:
Meco Man 2022-08-17 09:55:03 -04:00 committed by Man, Jianting (Meco)
parent 89f40696ff
commit b04076d8aa
1 changed files with 5 additions and 0 deletions

View File

@ -253,7 +253,12 @@ int _sys_write(FILEHANDLE fh, const unsigned char *buf, unsigned len, int mode)
*/
int _sys_ensure(FILEHANDLE fh)
{
#ifdef DFS_USING_POSIX
return fsync(fh);
#else
LOG_W("%s: %s", __func__, _WARNING_WITHOUT_FS);
return 0; /* error */
#endif /* DFS_USING_POSIX */
}
/*