Browse Source

* write output to stderr

git-svn-id: trunk@8620 -
florian 18 years ago
parent
commit
91956cdb54
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/utils/fptime.pp

+ 1 - 1
tests/utils/fptime.pp

@@ -11,6 +11,6 @@ begin
         ps:=ps+' '+paramstr(i);
       sticks:=GetMicroSTicks;
       ExecuteProcess(paramstr(1),ps);
-      writeln((GetMicroSTicks-sticks)/1000:0:3,' ms');
+      writeln(stderr,(GetMicroSTicks-sticks)/1000:0:3,' ms');
     end;
 end.