From 847f249a0cff6567c6c2e74894c59859e1de31a2 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Thu, 12 Sep 2019 21:05:22 -0700 Subject: [PATCH] lr: fix hosversion spacing --- nx/source/services/lr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nx/source/services/lr.c b/nx/source/services/lr.c index 76495cbb..f4072535 100644 --- a/nx/source/services/lr.c +++ b/nx/source/services/lr.c @@ -189,7 +189,7 @@ static Result _lrRedirectPath(Service* s, u64 cmd_id, u64 tid, const char *path) */ static Result _lrRedirectApplicationPath(Service* s, u64 cmd_id, u64 tid, u64 tid2, const char *path) { // On < 9.0.0, call the original redirection helper. - if (hosversionBefore(9, 0, 0)) { + if (hosversionBefore(9,0,0)) { return _lrRedirectPath(s, cmd_id, tid, path); }