* fixed typo introduced while prettifying the test

git-svn-id: trunk@4435 -
This commit is contained in:
tom_at_work 2006-08-17 21:43:52 +00:00
parent 73d9beecff
commit 054bc27aaa

View File

@ -12,7 +12,7 @@ begin
Format('%*s', [Integer(length(s)), s]);
// this is only seemingly equivalent to above, but on 64 bit
// machines the default integer type is Int64
Format('%*s', [length(s), s])
Format('%*s', [length(s), s]);
// also test QWord
Format('%*s', [QWord(length(s)), s]);
end.