From e04fcfff6bc5f08b6cf3a8f14a9ae9c46d41a2ee Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Sat, 20 Apr 2019 18:37:50 -0700 Subject: [PATCH] ro: fix typo --- stratosphere/ro/source/ro_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stratosphere/ro/source/ro_main.cpp b/stratosphere/ro/source/ro_main.cpp index cff2733f4..4bd9b4893 100644 --- a/stratosphere/ro/source/ro_main.cpp +++ b/stratosphere/ro/source/ro_main.cpp @@ -106,7 +106,7 @@ void __appExit(void) { /* Helpers to create RO objects. */ static const auto MakeRoServiceForSelf = []() { return std::make_shared(RoServiceType_ForSelf); }; -static const auto MakeRoServiceForOthers = []() { return std::make_shared(RoServiceType_ForSelf); }; +static const auto MakeRoServiceForOthers = []() { return std::make_shared(RoServiceType_ForOthers); }; int main(int argc, char **argv) {