mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-09 00:46:00 +02:00
* fix formatting of the writing of the fraction
git-svn-id: trunk@35235 -
This commit is contained in:
parent
466d26b5ef
commit
3706ab4e44
@ -68,7 +68,7 @@ unit timer;
|
|||||||
{$ifdef USEEPIK}
|
{$ifdef USEEPIK}
|
||||||
write(stderr,e:0:6,' Seconds');
|
write(stderr,e:0:6,' Seconds');
|
||||||
{$else USEEPIK}
|
{$else USEEPIK}
|
||||||
write(stderr,s div 1000,'.',format('%03d',[s mod 1000]),' Seconds');
|
write(stderr,s div 1000,'.',format('%.3d',[s mod 1000]),' Seconds');
|
||||||
{$endif USEEPIK}
|
{$endif USEEPIK}
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user