Rename ACU_GetSsidLength -> ACU_GetSSIDLength

This commit is contained in:
Joel16 2017-11-15 23:53:05 -06:00
parent 78cc7547b8
commit 2420a55a9d
2 changed files with 2 additions and 2 deletions

View File

@ -35,4 +35,4 @@ Result ACU_GetSecurityMode(u32 *out);
* @brief Gets the current Wifi SSID length. * @brief Gets the current Wifi SSID length.
* @param out Pointer to output the current Wifi SSID length to. * @param out Pointer to output the current Wifi SSID length to.
*/ */
Result ACU_GetSsidLength(u32 *out); Result ACU_GetSSIDLength(u32 *out);

View File

@ -79,7 +79,7 @@ Result ACU_GetSecurityMode(u32 *out)
return (Result)cmdbuf[1]; return (Result)cmdbuf[1];
} }
Result ACU_GetSsidLength(u32 *out) Result ACU_GetSSIDLength(u32 *out)
{ {
Result ret=0; Result ret=0;
u32 *cmdbuf = getThreadCommandBuffer(); u32 *cmdbuf = getThreadCommandBuffer();