diff --git a/AK/Format.cpp b/AK/Format.cpp index f0aa893a64..635f0218db 100644 --- a/AK/Format.cpp +++ b/AK/Format.cpp @@ -873,8 +873,11 @@ void vdmesgln(StringView fmtstr, TypeErasedFormatParams& params) # ifdef __serenity__ struct timespec ts = {}; + +# if !ARCH(AARCH64) if (TimeManagement::is_initialized()) ts = TimeManagement::the().monotonic_time(TimePrecision::Coarse).to_timespec(); +# endif if (Kernel::Processor::is_initialized() && Kernel::Thread::current()) { auto& thread = *Kernel::Thread::current();