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:
parent
ec8dae1524
commit
5293ea1dac
3 changed files with 16 additions and 16 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue