From 0a4c2759a1f73cb5581ed2e87c20e05440a2c037 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 --- libstratosphere/source/os/impl/os_mutex_impl.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libstratosphere/source/os/impl/os_mutex_impl.hpp b/libstratosphere/source/os/impl/os_mutex_impl.hpp index 3396bd88..5557d39f 100644 --- a/libstratosphere/source/os/impl/os_mutex_impl.hpp +++ b/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); }