1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-11-18 01:46:47 +00:00

kern: fix building under release config

This commit is contained in:
Michael Scire 2020-07-27 15:22:40 -07:00 committed by SciresM
parent 9dc3e025fc
commit b1f38be3ae

View file

@ -54,6 +54,8 @@ namespace ams::kern {
#if defined (MESOSPHERE_BUILD_FOR_AUDITING) #if defined (MESOSPHERE_BUILD_FOR_AUDITING)
old_head->SetNextTask(nullptr); old_head->SetNextTask(nullptr);
#else
AMS_UNUSED(old_head);
#endif #endif
} }