From fd8063ce9af2124cfef7bdfdada5086d68963409 Mon Sep 17 00:00:00 2001 From: shibbo Date: Fri, 25 Jan 2019 12:26:17 -0500 Subject: [PATCH] Fix invisible tabbing issue, and correct file header --- nx/include/switch/services/nifm.h | 3 +-- nx/source/services/nifm.c | 6 +++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/nx/include/switch/services/nifm.h b/nx/include/switch/services/nifm.h index fa01465f..c8cf1a25 100644 --- a/nx/include/switch/services/nifm.h +++ b/nx/include/switch/services/nifm.h @@ -1,8 +1,7 @@ /** * @file nifm.h * @brief Network interface service IPC wrapper. - * @author shadowninja108 - * @author shibboleet + * @author shadowninja108, shibboleet * @copyright libnx Authors */ diff --git a/nx/source/services/nifm.c b/nx/source/services/nifm.c index 83d136e7..11b4f251 100644 --- a/nx/source/services/nifm.c +++ b/nx/source/services/nifm.c @@ -1,5 +1,5 @@ /** - * @file nifm.h + * @file nifm.c * @brief Network interface service IPC wrapper. * @author shadowninja10, shibboleet * @copyright libnx Authors @@ -145,7 +145,7 @@ Result nifmIsEthernetCommunicationEnabled(bool* out) { resp = r.Raw; rc = resp->result; - + if (R_SUCCEEDED(rc) && out) *out = resp->out != 0; } @@ -182,7 +182,7 @@ Result nifmIsAnyForegroundRequestAccepted(bool* out) { resp = r.Raw; rc = resp->result; - + if (R_SUCCEEDED(rc) && out) *out = resp->out != 0; }