Fixed compilation warnings (mostly size_t->int, signed/unsigned conversions).

This commit is contained in:
Artem Kharytoniuk
2014-07-08 23:32:09 +03:00
parent 0f690ecf79
commit 3cc9bcd542
70 changed files with 316 additions and 311 deletions

View File

@@ -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)
{