Fixed compilation warnings (mostly size_t->int, signed/unsigned conversions).
This commit is contained in:
@@ -347,7 +347,7 @@ int WriteFloat(FILE *fp, float value)
|
||||
int l;
|
||||
|
||||
sprintf(buf, "%f", value);
|
||||
l = strlen(buf);
|
||||
l = (int)strlen(buf);
|
||||
//strip any trailing zeros
|
||||
while(l-- > 1)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user