瀏覽代碼

Change to match change in open

Per Mårtensson 3 年之前
父節點
當前提交
cae0964305
共有 1 個文件被更改,包括 1 次插入1 次删除
  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);
 }