fix some implicit type conversion warnings

Change-Id: I0653d10410c0d46f91fedad4c4dffa9c1de402cb
This commit is contained in:
James Zern
2012-06-04 18:36:02 -07:00
parent 8fbb91884e
commit 42f6df9da3
3 changed files with 10 additions and 10 deletions

View File

@ -132,7 +132,7 @@ float VP8LFastLog(int v) {
}
return kLogTable[v] + (log_cnt * LOG_2_BASE_E);
}
return log(v);
return (float)log(v);
}
#endif