Преглед изворни кода

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);
 }