Fix buffer type in FSUSER_EnumerateSystemSaveData.

This commit is contained in:
Steven Smith 2016-04-09 23:53:45 -07:00
parent 2f7515a814
commit 001623c43d
2 changed files with 2 additions and 2 deletions

View File

@ -853,7 +853,7 @@ Result FSUSER_SwitchCleanupInvalidSaveData(bool enable);
* @param idsSize Size of the IDs buffer. * @param idsSize Size of the IDs buffer.
* @param ids Pointer to output IDs to. * @param ids Pointer to output IDs to.
*/ */
Result FSUSER_EnumerateSystemSaveData(u32* idsWritten, u32 idsSize, u64* ids); Result FSUSER_EnumerateSystemSaveData(u32* idsWritten, u32 idsSize, u32* ids);
/** /**
* @brief Initializes a FSUSER session with an SDK version. * @brief Initializes a FSUSER session with an SDK version.

View File

@ -1407,7 +1407,7 @@ Result FSUSER_SwitchCleanupInvalidSaveData(bool enable)
return cmdbuf[1]; return cmdbuf[1];
} }
Result FSUSER_EnumerateSystemSaveData(u32* idsWritten, u32 idsSize, u64* ids) Result FSUSER_EnumerateSystemSaveData(u32* idsWritten, u32 idsSize, u32* ids)
{ {
u32 *cmdbuf = getThreadCommandBuffer(); u32 *cmdbuf = getThreadCommandBuffer();