Browse Source

Patch by Vasiliy Kevroletin. Fixes Mantis #23655.

compiler/node.pas, tnode.printnodeinfo:
  * write flags to file "t" instead of stdout

git-svn-id: trunk@23384 -
svenbarth 12 years ago
parent
commit
c7a9e17bc5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      compiler/node.pas

+ 1 - 1
compiler/node.pas

@@ -858,7 +858,7 @@ implementation
                 write(t,',')
                 write(t,',')
               else
               else
                 first:=false;
                 first:=false;
-              write(i);
+              write(t, i);
             end;
             end;
         write(t,']');
         write(t,']');
       end;
       end;