mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-02 13:02:44 +01:00
missed a semicolon
This commit is contained in:
parent
311cfa231b
commit
6d20086742
1 changed files with 1 additions and 1 deletions
|
@ -2792,7 +2792,7 @@ Result KPageTableBase::MapPages(KProcessAddress address, size_t num_pages, KMemo
|
||||||
KScopedPageTableUpdater updater(this);
|
KScopedPageTableUpdater updater(this);
|
||||||
|
|
||||||
// Map the pages.
|
// Map the pages.
|
||||||
KPageProperties properties = {perm, false, false, DisableMergeAttribute::DisableHead}
|
KPageProperties properties = {perm, false, false, DisableMergeAttribute::DisableHead};
|
||||||
R_TRY(this->AllocateAndMapPagesImpl(updater.GetPageList(), address, num_pages, properties));
|
R_TRY(this->AllocateAndMapPagesImpl(updater.GetPageList(), address, num_pages, properties));
|
||||||
|
|
||||||
// Update the blocks.
|
// Update the blocks.
|
||||||
|
|
Loading…
Reference in a new issue