fssrv: fix dumb assert error

This commit is contained in:
Michael Scire 2024-02-23 13:55:43 -07:00
parent e49916968c
commit a55e74aec3

View File

@ -34,7 +34,7 @@ namespace ams::fssrv {
void ProgramRegistryImpl::Initialize(ProgramRegistryServiceImpl *service) { void ProgramRegistryImpl::Initialize(ProgramRegistryServiceImpl *service) {
/* Check pre-conditions. */ /* Check pre-conditions. */
AMS_ASSERT(g_impl != nullptr); AMS_ASSERT(service != nullptr);
AMS_ASSERT(g_impl == nullptr); AMS_ASSERT(g_impl == nullptr);
/* Set the global service. */ /* Set the global service. */