Browse Source

* write node flags to log file instead of to stdout

git-svn-id: trunk@23150 -
Jonas Maebe 12 years ago
parent
commit
6e9a8c9187
1 changed files with 2 additions and 2 deletions
  1. 2 2
      compiler/node.pas

+ 2 - 2
compiler/node.pas

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