Skip to content

Commit

Permalink
fssrv: fix dumb assert error
Browse files Browse the repository at this point in the history
  • Loading branch information
SciresM committed Feb 23, 2024
1 parent 615f8a3 commit 0220f67
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -34,8 +34,8 @@ namespace ams::fssrv {

void ProgramRegistryImpl::Initialize(ProgramRegistryServiceImpl *service) {
/* Check pre-conditions. */
AMS_ASSERT(g_impl != nullptr);
AMS_ASSERT(g_impl == nullptr);
AMS_ASSERT(service != nullptr);
AMS_ASSERT(g_impl == nullptr);

/* Set the global service. */
g_impl = service;
Expand Down

0 comments on commit 0220f67

Please sign in to comment.