diff options
| author | bunnei <bunneidev@gmail.com> | 2015-02-13 15:53:34 -0500 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2015-02-13 15:53:34 -0500 |
| commit | 29a9e4ac25504bee82f273184a1afcc88a3e61e1 (patch) | |
| tree | 9fa96cdc2bc180ac4c5a2c33158ae7cc60f2a308 /src/core/hle/service/ac_u.cpp | |
| parent | c44d75787b03e84591aac3ab3cc07eaf8c023188 (diff) | |
| parent | 0c6434c379bd13553e2504d269965c764e2a0441 (diff) | |
Merge pull request #572 from lioncash/prototypes
core: Apply static to local functions
Diffstat (limited to 'src/core/hle/service/ac_u.cpp')
| -rw-r--r-- | src/core/hle/service/ac_u.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/ac_u.cpp b/src/core/hle/service/ac_u.cpp index 50644816b..f8aab6bc7 100644 --- a/src/core/hle/service/ac_u.cpp +++ b/src/core/hle/service/ac_u.cpp @@ -17,7 +17,7 @@ namespace AC_U { * 1 : Result of function, 0 on success, otherwise error code * 2 : Output connection type, 0 = none, 1 = Old3DS Internet, 2 = New3DS Internet. */ -void GetWifiStatus(Service::Interface* self) { +static void GetWifiStatus(Service::Interface* self) { u32* cmd_buff = Kernel::GetCommandBuffer(); // TODO(purpasmart96): This function is only a stub, |
