diff -r c3206e3f051a -r 6d1c74e0e2cd src/settings.cpp --- a/src/settings.cpp Fri Apr 18 03:20:59 2008 +0000 +++ b/src/settings.cpp Fri Apr 18 04:37:06 2008 +0000 @@ -83,7 +83,7 @@ static bool IsSignedVarMemType(VarType vt); struct SettingsMemoryPool { - uint pos,size; + uint pos, size; SettingsMemoryPool *next; byte mem[1]; }; @@ -242,7 +242,7 @@ /* trim whitespace from right side. */ e = s + strlen(s); - while (e > s && ((c=e[-1]) == '\n' || c == '\r' || c == ' ' || c == '\t')) e--; + while (e > s && ((c = e[-1]) == '\n' || c == '\r' || c == ' ' || c == '\t')) e--; *e = '\0'; /* skip comments and empty lines */ @@ -253,7 +253,7 @@ /* add to comment */ if (ns > a) { a = max(a, 128U); - do a*=2; while (a < ns); + do a *= 2; while (a < ns); comment = ReallocT(comment, comment_alloc = a); } pos = comment_size;