Parcourir la source

* write node flags to log file instead of to stdout

git-svn-id: trunk@23150 -
Jonas Maebe il y a 12 ans
Parent
commit
6e9a8c9187
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      compiler/node.pas

+ 2 - 2
compiler/node.pas

@@ -855,12 +855,12 @@ implementation
           if i in flags then
             begin
               if not(first) then
-                write(',')
+                write(t,',')
               else
                 first:=false;
               write(i);
             end;
-        write(']');
+        write(t,']');
       end;