lsteamclient: Always use a return result variable.

CW-Bug-Id: #22729
This commit is contained in:
Rémi Bernon 2023-09-23 21:44:20 +02:00
parent d0230e1d4e
commit 9f71e16ff9
233 changed files with 29134 additions and 10252 deletions

View file

@ -18,7 +18,9 @@ void cppISteamVideo_STEAMVIDEO_INTERFACE_V001_GetVideoURL(void *linux_side, AppI
bool cppISteamVideo_STEAMVIDEO_INTERFACE_V001_IsBroadcasting(void *linux_side, int *pnNumViewers)
{
return ((ISteamVideo*)linux_side)->IsBroadcasting((int *)pnNumViewers);
bool _ret;
_ret = ((ISteamVideo*)linux_side)->IsBroadcasting((int *)pnNumViewers);
return (_ret);
}
#ifdef __cplusplus