lsteamclient: Consistently use the computed return type.

CW-Bug-Id: #22729
This commit is contained in:
Rémi Bernon 2023-09-23 22:07:08 +02:00 committed by Arkadiusz Hiler
parent ef91c04a22
commit 8d78cb5107
135 changed files with 1818 additions and 1812 deletions

View file

@ -125,7 +125,7 @@ int32 cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileCoun
const char * cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileNameAndSize(void *linux_side, int iFile, int32 *pnFileSizeInBytes)
{
const char * _ret;
const char *_ret;
_ret = ((ISteamRemoteStorage*)linux_side)->GetFileNameAndSize((int)iFile, (int32 *)pnFileSizeInBytes);
return (_ret);
}