Browse Source

* fix compile

git-svn-id: trunk@7526 -
peter 18 năm trước cách đây
mục cha
commit
54c1c22616
1 tập tin đã thay đổi với 5 bổ sung5 xóa
  1. 5 5
      packages/fpmake/fpmake.pp

+ 5 - 5
packages/fpmake/fpmake.pp

@@ -3,14 +3,14 @@ program fpmake;
 
 uses fpmktype,fpmkunit;
 
-Var
+var
   T : TTarget;
-
+  S : TSource;
 begin
-  With Installer do 
+  with Installer do
     begin
-    {$i fpmake.inc}
-    Run;
+      {$i fpmake.inc}
+      Run;
     end;
 end.