M68K: Account for extra parameter to create_area_etc()

Would have been nice to also fix 68k code... just sayin.
This commit is contained in:
François Revol 2013-09-30 04:15:27 +02:00
parent 835545cfd1
commit 4046c49f88

View File

@ -275,7 +275,7 @@ M68KPagingMethod040::PhysicalPageSlotPool::AllocatePool(
physical_address_restrictions physicalRestrictions = {};
area_id dataArea = create_area_etc(B_SYSTEM_TEAM, "physical page pool",
PAGE_ALIGN(areaSize), B_FULL_LOCK,
B_KERNEL_READ_AREA | B_KERNEL_WRITE_AREA, CREATE_AREA_DONT_WAIT,
B_KERNEL_READ_AREA | B_KERNEL_WRITE_AREA, CREATE_AREA_DONT_WAIT, 0,
&virtualRestrictions, &physicalRestrictions, &data);
if (dataArea < 0)
return dataArea;