From 7e581f61104a633d649b4a1b010ca3c0a7188309 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Tue, 14 Apr 2020 10:00:11 -0700 Subject: [PATCH] fix if spacing --- nx/source/services/fspr.c | 4 ++-- nx/source/services/ldr.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/nx/source/services/fspr.c b/nx/source/services/fspr.c index 5dce125d..8afbf2cc 100644 --- a/nx/source/services/fspr.c +++ b/nx/source/services/fspr.c @@ -69,7 +69,7 @@ Result fsprUnregisterProgram(u64 pid) { } Result fsprSetCurrentProcess(void) { - if(hosversionBefore(4,0,0)) + if (hosversionBefore(4,0,0)) return MAKERESULT(Module_Libnx, LibnxError_IncompatSysVer); u64 pid_placeholder = 0; @@ -78,7 +78,7 @@ Result fsprSetCurrentProcess(void) { } Result fsprSetEnabledProgramVerification(bool enabled) { - if(hosversionAtLeast(10,0,0)) + if (hosversionAtLeast(10,0,0)) return MAKERESULT(Module_Libnx, LibnxError_IncompatSysVer); const u8 in = enabled != 0; diff --git a/nx/source/services/ldr.c b/nx/source/services/ldr.c index bbfac2d9..e2fb271a 100644 --- a/nx/source/services/ldr.c +++ b/nx/source/services/ldr.c @@ -94,7 +94,7 @@ Result ldrPmUnpinProgram(u64 pin_id) { } Result ldrPmSetEnabledProgramVerification(bool enabled) { - if(hosversionBefore(10,0,0)) + if (hosversionBefore(10,0,0)) return MAKERESULT(Module_Libnx, LibnxError_IncompatSysVer); const u8 in = enabled != 0;