Skip to content

Commit

Permalink
fix "unused variable" for "alignment" in hypervisor_memory_allocator
Browse files Browse the repository at this point in the history
  • Loading branch information
wbenny committed Oct 31, 2019
1 parent 7b74a9a commit 5552f21
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,8 @@ namespace mm
!(alignment & (alignment - 1)) // is power of 2
);

(void)(alignment);

return allocate(size);
}

Expand Down

0 comments on commit 5552f21

Please sign in to comment.