소스 검색

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