From 27a48aa7208eda8dd3163a211d1865e97c4309cd Mon Sep 17 00:00:00 2001 From: shibbo Date: Fri, 25 Jan 2019 02:37:35 -0500 Subject: [PATCH] Fix tab issue --- nx/source/services/nifm.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/nx/source/services/nifm.c b/nx/source/services/nifm.c index 8191b182..7c8af02f 100644 --- a/nx/source/services/nifm.c +++ b/nx/source/services/nifm.c @@ -21,7 +21,7 @@ Result nifmInitialize(void) { if (serviceIsActive(&g_nifmSrv)) return 0; - + Result rc; rc = smGetService(&g_nifmSrv, "nifm:u"); @@ -146,9 +146,9 @@ Result nifmIsEthernetCommunicationEnabled(bool* out) { resp = r.Raw; rc = resp->result; - + if (R_SUCCEEDED(rc) && out) - *out = resp->out != 0; + *out = resp->out != 0; } return rc; @@ -183,9 +183,9 @@ Result nifmIsAnyForegroundRequestAccepted(bool* out) { resp = r.Raw; rc = resp->result; - + if (R_SUCCEEDED(rc) && out) - *out = resp->out != 0; + *out = resp->out != 0; } return rc;