1
0
Fork 0
forked from len0rd/rockbox

More 64-bit fixes

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9321 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dave Chapman 2006-03-28 17:42:57 +00:00
parent ec8dae1524
commit 5293ea1dac
3 changed files with 16 additions and 16 deletions

View file

@ -251,8 +251,8 @@ void Z_Init(void)
// Align on cache boundary
zone = (memblock_t *) ((char *) zonebase + CACHE_ALIGN -
((unsigned) zonebase & (CACHE_ALIGN-1)));
zone = (memblock_t *) ((unsigned long)zonebase + CACHE_ALIGN -
((unsigned long)zonebase & (CACHE_ALIGN-1)));
rover = zone; // Rover points to base of zone mem
zone->next = zone->prev = zone; // Single node