diff options
Diffstat (limited to 'Kernel/Profiling.cpp')
-rw-r--r-- | Kernel/Profiling.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Profiling.cpp b/Kernel/Profiling.cpp index 2765b59d34..18fff9aadc 100644 --- a/Kernel/Profiling.cpp +++ b/Kernel/Profiling.cpp @@ -64,7 +64,7 @@ void start(Process& process) s_pid = process.pid(); if (!s_profiling_buffer) { - s_profiling_buffer = RefPtr<KBufferImpl>(KBuffer::create_with_size(8 * MB).impl()).leak_ref(); + s_profiling_buffer = RefPtr<KBufferImpl>(KBuffer::create_with_size(8 * MiB).impl()).leak_ref(); s_profiling_buffer->region().commit(); s_slot_count = s_profiling_buffer->size() / sizeof(Sample); } |