From 41d898e1e405229a27e573472d85428c9c7020aa Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sun, 13 Jan 2013 08:45:02 -0800 Subject: [PATCH] Use (u)int64_t instead of long. --- format.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/format.h b/format.h index 79977985..9a1fa111 100644 --- a/format.h +++ b/format.h @@ -570,8 +570,8 @@ class Formatter : public BasicFormatter { int int_value; unsigned uint_value; double double_value; - long long_value; - unsigned long ulong_value; + int64_t long_value; + uint64_t ulong_value; long double long_double_value; const void *pointer_value; struct {