mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-28 13:44:11 -04:00
kern: fix stray addressof operator
This commit is contained in:
parent
68040e2922
commit
a8df400825
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ namespace ams::kern {
|
|||
|
||||
/* Sleep the thread. */
|
||||
{
|
||||
KScopedSchedulerLockAndSleep lk(&timer, owner, timeout);
|
||||
KScopedSchedulerLockAndSleep lk(std::addressof(timer), owner, timeout);
|
||||
|
||||
if (!allow_terminating_thread && owner->IsTerminationRequested()) {
|
||||
lk.CancelSleep();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue