Fix FormatInt.

This commit is contained in:
Victor Zverovich
2013-09-10 09:28:04 -07:00
parent 2951f8b3d8
commit eded10cf31
2 changed files with 2 additions and 1 deletions

View File

@@ -1140,7 +1140,7 @@ class FormatInt {
public:
explicit FormatInt(int value) {
uint64_t abs_value = value;
unsigned abs_value = value;
bool negative = value < 0;
if (negative)
abs_value = 0 - value;