os: fix mutex push/pop prototypes

This commit is contained in:
Michael Scire 2021-10-07 23:38:15 -07:00
parent 80d72af9f3
commit 0a4c2759a1

View File

@ -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);
}