Browse Source

Change to match change in open

Per Mårtensson 3 năm trước cách đây
mục cha
commit
cae0964305
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/LITTLEFS.cpp

+ 1 - 1
src/LITTLEFS.cpp

@@ -41,7 +41,7 @@ LITTLEFSImpl::LITTLEFSImpl()
 
 bool LITTLEFSImpl::exists(const char* path)
 {
-    File f = open(path, "r");
+    File f = open(path, "r",false);
     return (f == true);
 }