소스 검색

* fixed missed setting of return code

git-svn-id: trunk@29002 -
Tomas Hajny 11 년 전
부모
커밋
30820cd0e5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      rtl/os2/dos.pas

+ 1 - 1
rtl/os2/dos.pas

@@ -453,7 +453,7 @@ begin
   DT.Minute := byte (Minute);
   DT.Second := byte (Second);
   DT.Sec100 := byte (Sec100);
-  DosSetDateTime (DT);
+  RC := DosSetDateTime (DT);
   if RC <> 0 then
    OSErrorWatch (RC);
 end;