diff options
Diffstat (limited to 'Kernel/system.h')
-rw-r--r-- | Kernel/system.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/system.h b/Kernel/system.h index 0839f28d45..16fbc1220f 100644 --- a/Kernel/system.h +++ b/Kernel/system.h @@ -9,7 +9,7 @@ struct KSym { String name; }; -Vector<KSym>& ksyms() PURE; +Vector<KSym, KmallocEternalAllocator>& ksyms() PURE; const KSym* ksymbolicate(dword address) PURE; struct system_t |