From d14290e3572c52f4dd9ed2a16f698ba12e9eea67 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Thu, 7 Oct 2021 23:38:15 -0700 Subject: [PATCH] os: fix mutex push/pop prototypes --- libraries/libstratosphere/source/os/impl/os_mutex_impl.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/libstratosphere/source/os/impl/os_mutex_impl.hpp b/libraries/libstratosphere/source/os/impl/os_mutex_impl.hpp index 3396bd88a..5557d39f7 100644 --- a/libraries/libstratosphere/source/os/impl/os_mutex_impl.hpp +++ b/libraries/libstratosphere/source/os/impl/os_mutex_impl.hpp @@ -18,7 +18,7 @@ namespace ams::os::impl { - void PushAndCheckLockLevel(MutexType *mutex); - void PopAndCheckLockLevel(MutexType *mutex); + void PushAndCheckLockLevel(const MutexType *mutex); + void PopAndCheckLockLevel(const MutexType *mutex); }