aboutsummaryrefslogtreecommitdiff
path: root/src/mem
diff options
context:
space:
mode:
Diffstat (limited to 'src/mem')
-rw-r--r--src/mem/alloc.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mem/alloc.rs b/src/mem/alloc.rs
index 307be5c..a98e680 100644
--- a/src/mem/alloc.rs
+++ b/src/mem/alloc.rs
@@ -303,7 +303,7 @@ pub static ALLOCATOR: GrandAllocator = GrandAllocator{};
/// # Global Allocator
///
/// Returns a borrow for the Global Allocator
-pub fn alloc() -> &'static crate::mem::alloc::GrandAllocator {
+pub fn allocator() -> &'static crate::mem::alloc::GrandAllocator {
vprintln!("AL: Getting global allocator!");
&crate::mem::alloc::ALLOCATOR
}