瀏覽代碼

[armlibc] solve the compiling error

report in #6300
Meco Man 2 年之前
父節點
當前提交
b04076d8aa
共有 1 個文件被更改,包括 5 次插入0 次删除
  1. 5 0
      components/libc/compilers/armlibc/syscalls.c

+ 5 - 0
components/libc/compilers/armlibc/syscalls.c

@@ -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 */
 }
 
 /*