fix int/UInt messup.

This commit is contained in:
Costa Vitor 2009-07-15 17:29:26 -05:00
parent 8a38c64441
commit 0b85333018

View File

@ -185,7 +185,7 @@ Yap_add_memory_hole(ADDR start, ADDR end)
} }
Yap_MemoryHoles[Yap_NOfMemoryHoles].start = start; Yap_MemoryHoles[Yap_NOfMemoryHoles].start = start;
Yap_MemoryHoles[Yap_NOfMemoryHoles].end = end; Yap_MemoryHoles[Yap_NOfMemoryHoles].end = end;
Yap_HoleSize += start-end; Yap_HoleSize += (UInt)(start-end);
Yap_NOfMemoryHoles++; Yap_NOfMemoryHoles++;
} }