소스 검색

*wince: compile broken dword instead of boolean

git-svn-id: trunk@5601 -
oro06 19 년 전
부모
커밋
76a3e61135
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      fcl/wince/process.inc

+ 2 - 2
fcl/wince/process.inc

@@ -220,8 +220,8 @@ Var
 
 begin
   R:=WaitForSingleObject (FProcessHandle,Infinite);
-  Result:=R<>Wait_Failed;
-  If R then
+  Result:=(R<>Wait_Failed);
+  If Result then
     GetExitStatus;
   FRunning:=False;
 end;