os: fix mutex push/pop prototypes

This commit is contained in:
Michael Scire 2021-10-07 23:38:15 -07:00
parent 812acb8b68
commit d14290e357

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