Przeglądaj źródła

Fix formatting of the output of unit import symbols.

git-svn-id: trunk@33888 -
svenbarth 9 lat temu
rodzic
commit
15ff68e144
1 zmienionych plików z 3 dodań i 2 usunięć
  1. 3 2
      compiler/utils/ppuutils/ppudump.pp

+ 3 - 2
compiler/utils/ppuutils/ppudump.pp

@@ -1093,11 +1093,12 @@ Procedure ReadUnitImportSyms;
 var
 var
   c,i : longint;
   c,i : longint;
 begin
 begin
-  write([space,'Imported Symbols']);
-  write([space,'----------------']);
+  writeln([space,'Imported Symbols']);
+  writeln([space,'----------------']);
   c:=ppufile.getlongint;
   c:=ppufile.getlongint;
   for i:=0 to c-1 do
   for i:=0 to c-1 do
     readderef(space);
     readderef(space);
+  writeln([space]);
 end;
 end;