Browse Source

* fixed timer unit name

git-svn-id: trunk@11476 -
florian 17 years ago
parent
commit
0a6887a874
1 changed files with 2 additions and 1 deletions
  1. 2 1
      tests/bench/bmd5.pp

+ 2 - 1
tests/bench/bmd5.pp

@@ -1,6 +1,6 @@
 {$mode objfpc}
 uses
-  stopuhr,md5;
+  timer,md5;
 
 
 const
@@ -23,4 +23,5 @@ begin
     for j:=low(Strings) to high(Strings) do
       MDString(Strings[j],MD_VERSION_5);
   stop;
+  writeln;
 end.