[N-Gage] Rename variable to avoid warning that the declaration of free' shadows global declaration.

This commit is contained in:
Michael Fitzmayer
2026-05-05 13:04:07 +02:00
parent 922b872b4f
commit 93a5d33386

View File

@@ -53,8 +53,8 @@ void NGAGE_DebugPrintf(const char *fmt, ...)
TInt NGAGE_GetFreeHeapMemory()
{
TInt free = 0;
return User::Available(free);
TInt heap_available = 0;
return User::Available(heap_available);
}
#ifdef __cplusplus