Browse Source

* Fix compilation of pipesipc

git-svn-id: trunk@33697 -
michael 9 years ago
parent
commit
d53c4b4153
1 changed files with 4 additions and 1 deletions
  1. 4 1
      packages/fcl-process/src/unix/simpleipc.inc

+ 4 - 1
packages/fcl-process/src/unix/simpleipc.inc

@@ -54,7 +54,6 @@ Type
 implementation
 {$endif}
 
-
 constructor TPipeClientComm.Create(AOWner: TSimpleIPCClient);
 begin
   inherited Create(AOWner);
@@ -86,6 +85,7 @@ procedure TPipeClientComm.SendMessage(MsgType : TMessagetype; AStream: TStream);
 
 Var
   Hdr : TMsgHeader;
+
 begin
   Hdr.Version:=MsgVersion;
   Hdr.msgType:=MsgType;
@@ -203,11 +203,13 @@ begin
     M.Size := 0;
 end;
 
+
 function TPipeServerComm.GetInstanceID: String;
 begin
   Result:=IntToStr(fpGetPID);
 end;
 
+
 { ---------------------------------------------------------------------
     Set TSimpleIPCClient / TSimpleIPCServer defaults.
   ---------------------------------------------------------------------}
@@ -231,4 +233,5 @@ end;
 
 {$else ipcunit}
 
+end.
 {$endif}