* fixed range check error when compiling with -dTest_Double_checksum

(although it crashes later for other reasons)

git-svn-id: branches/jvmbackend@18601 -
This commit is contained in:
Jonas Maebe 2011-08-20 08:14:09 +00:00
parent 16cb75a5da
commit c943d703fd

View File

@ -38,7 +38,7 @@ var
const
CRC_array_Size = 200000;
type
tcrc_array = array[0..crc_array_size] of longint;
tcrc_array = array[0..crc_array_size] of dword;
pcrc_array = ^tcrc_array;
{$endif Test_Double_checksum}