diff --git a/src/mem/alloc.h b/src/mem/alloc.h index 42e58e9..5e09d70 100644 --- a/src/mem/alloc.h +++ b/src/mem/alloc.h @@ -837,8 +837,7 @@ namespace snmalloc { // Manufacture an allocation to prime the queue // Using an actual allocation removes a conditional of a critical path. - Remote* dummy = - reinterpret_cast(alloc(MIN_ALLOC_SIZE)); + Remote* dummy = reinterpret_cast(alloc(MIN_ALLOC_SIZE)); dummy->set_target_id(id()); message_queue().init(dummy); }