Fix invisible tabbing issue, and correct file header

This commit is contained in:
shibbo 2019-01-25 12:26:17 -05:00
parent 801b6fe1f4
commit fd8063ce9a
2 changed files with 4 additions and 5 deletions

View File

@ -1,8 +1,7 @@
/** /**
* @file nifm.h * @file nifm.h
* @brief Network interface service IPC wrapper. * @brief Network interface service IPC wrapper.
* @author shadowninja108 * @author shadowninja108, shibboleet
* @author shibboleet
* @copyright libnx Authors * @copyright libnx Authors
*/ */

View File

@ -1,5 +1,5 @@
/** /**
* @file nifm.h * @file nifm.c
* @brief Network interface service IPC wrapper. * @brief Network interface service IPC wrapper.
* @author shadowninja10, shibboleet * @author shadowninja10, shibboleet
* @copyright libnx Authors * @copyright libnx Authors
@ -145,7 +145,7 @@ Result nifmIsEthernetCommunicationEnabled(bool* out) {
resp = r.Raw; resp = r.Raw;
rc = resp->result; rc = resp->result;
if (R_SUCCEEDED(rc) && out) if (R_SUCCEEDED(rc) && out)
*out = resp->out != 0; *out = resp->out != 0;
} }
@ -182,7 +182,7 @@ Result nifmIsAnyForegroundRequestAccepted(bool* out) {
resp = r.Raw; resp = r.Raw;
rc = resp->result; rc = resp->result;
if (R_SUCCEEDED(rc) && out) if (R_SUCCEEDED(rc) && out)
*out = resp->out != 0; *out = resp->out != 0;
} }