Browse Source

[armlibc] solve the compiling error

report in #6300
Meco Man 2 năm trước cách đây
mục cha
commit
b04076d8aa
1 tập tin đã thay đổi với 5 bổ sung0 xóa
  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 */
 }
 
 /*