Commit 14c16f93ed782484b506f9993ffbc2dfc98f1fa2

Authored by 김태훈
1 parent 34d0631a4e
Exists in master and in 2 other branches fhd, fhd-demo

코드 수정

- 스트림이 파일에 종속돼있기 때문에 스트림 flush 전에 파일을 닫으면 문제가 생길 수 있음
Showing 1 changed file with 1 additions and 0 deletions   Show diff stats
app/gui/oven_control/cookprogram.cpp
... ... @@ -472,6 +472,7 @@ void writeManual()
472 472 << e.coreTemp << "\n";
473 473 }
474 474  
  475 + stream.flush();
475 476 file.close();
476 477 sync();
477 478 }
... ...