Skip to content

Commit

Permalink
silence compiler warning in CAddonDll
Browse files Browse the repository at this point in the history
  • Loading branch information
Montellese committed Jul 8, 2012
1 parent 5fe725d commit bdbe25d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/addons/AddonDll.h
Expand Up @@ -430,7 +430,7 @@ ADDON_STATUS CAddonDll<TheDll, TheStruct, TheProps>::TransferSettings()
else if (strcmpi(type, "rangeofnum") == 0 || strcmpi(type, "slider") == 0 ||
strcmpi(type, "number") == 0)
{
float tmpf = atof(GetSetting(id));
float tmpf = (float)atof(GetSetting(id));
int tmpi;

if (option && strcmpi(option,"int") == 0)
Expand Down

0 comments on commit bdbe25d

Please sign in to comment.