You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This could result in compiler errors/warnings on certain platforms. It is recommended to update the prototype variable names to match the implementations.
The text was updated successfully, but these errors were encountered:
The OS_SymbolLookup function prototype (in osapi-os-loader.h) defines the prototype to be:
int32 OS_SymbolLookup (cpuaddr *symbol_address, const char *symbol_name );
While the implementations of this function declares the function with variable names that do not match the prototype:
int32 OS_SymbolLookup( cpuaddr *SymbolAddress, const char *SymbolName )
This could result in compiler errors/warnings on certain platforms. It is recommended to update the prototype variable names to match the implementations.
The text was updated successfully, but these errors were encountered: