# HG changeset patch # User truelight # Date 2007-07-24 12:29:47 # Node ID 32b8e520559ee198413a4bfa6ef80eeab4c8e4f8 # Parent 8f95100e92379c4a1a9560eace89e57d6adb38dc (svn r10671) -Codechange: don't mix both lookup and temp-variable-with-value-of-lookup (skidd13) diff --git a/src/strings.cpp b/src/strings.cpp --- a/src/strings.cpp +++ b/src/strings.cpp @@ -241,7 +241,7 @@ static const uint32 _divisor_table[] = { // TODO static char *FormatCommaNumber(char *buff, int32 number, const char* last) { - uint32 quot,divisor; + uint32 quot; int i; uint32 tot; uint32 num; @@ -255,9 +255,8 @@ static char *FormatCommaNumber(char *buf tot = 0; for (i = 0; i != 10; i++) { - divisor = _divisor_table[i]; quot = 0; - if (num >= divisor) { + if (num >= _divisor_table[i]) { quot = num / _divisor_table[i]; num = num % _divisor_table[i]; } @@ -275,7 +274,7 @@ static char *FormatCommaNumber(char *buf // TODO static char *FormatNoCommaNumber(char *buff, int32 number, const char* last) { - uint32 quot,divisor; + uint32 quot; int i; uint32 tot; uint32 num; @@ -289,9 +288,8 @@ static char *FormatNoCommaNumber(char *b tot = 0; for (i = 0; i != 10; i++) { - divisor = _divisor_table[i]; quot = 0; - if (num >= divisor) { + if (num >= _divisor_table[i]) { quot = num / _divisor_table[i]; num = num % _divisor_table[i]; }