From 107e109903a9e546b689241f4e3b06c689654ef2 Mon Sep 17 00:00:00 2001 From: raphaelthegreat <47210458+raphaelthegreat@users.noreply.github.com> Date: Mon, 10 Jun 2024 19:51:22 +0300 Subject: [PATCH] clang format --- src/core/libraries/kernel/time_management.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/libraries/kernel/time_management.cpp b/src/core/libraries/kernel/time_management.cpp index aeb9a76d2..9f81da6b0 100644 --- a/src/core/libraries/kernel/time_management.cpp +++ b/src/core/libraries/kernel/time_management.cpp @@ -2,9 +2,9 @@ // SPDX-License-Identifier: GPL-2.0-or-later #include "common/native_clock.h" +#include "core/libraries/error_codes.h" #include "core/libraries/kernel/time_management.h" #include "core/libraries/libs.h" -#include "core/libraries/error_codes.h" namespace Libraries::Kernel { @@ -31,7 +31,7 @@ u64 PS4_SYSV_ABI sceKernelReadTsc() { return clock->GetUptime(); } -int PS4_SYSV_ABI sceKernelGettimeofday(OrbisKernelTimeval *tp) { +int PS4_SYSV_ABI sceKernelGettimeofday(OrbisKernelTimeval* tp) { if (!tp) { return ORBIS_KERNEL_ERROR_EFAULT; } @@ -46,7 +46,7 @@ int PS4_SYSV_ABI sceKernelGettimeofday(OrbisKernelTimeval *tp) { return ORBIS_OK; } -int PS4_SYSV_ABI gettimeofday(OrbisKernelTimeval *tp, OrbisKernelTimezone* tz) { +int PS4_SYSV_ABI gettimeofday(OrbisKernelTimeval* tp, OrbisKernelTimezone* tz) { // FreeBSD docs mention that the kernel generally does not track these values // and they are usually returned as zero. if (tz) {