소스 검색

Fixed some quotes I screwed up

Troy 4 년 전
부모
커밋
8b30041f41
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      src/BlueSCSI.cpp

+ 2 - 1
src/BlueSCSI.cpp

@@ -337,12 +337,13 @@ void readSDCardInfo()
 
     LOG_FILE.print("Sd Date:");
     LOG_FILE.print(sd_cid.mdt_month);
-    LOG_FILE.print('/20'); // CID year is 2000 + high/low
+    LOG_FILE.print("/20"); // CID year is 2000 + high/low
     LOG_FILE.print(sd_cid.mdt_year_high);
     LOG_FILE.println(sd_cid.mdt_year_low);
     
     LOG_FILE.print("Sd Serial:");
     LOG_FILE.println(sd_cid.psn);
+    LOG_FILE.sync();
   }
 }