diff options
Diffstat (limited to 'sql/meta_table_unittest.cc')
-rw-r--r-- | sql/meta_table_unittest.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/meta_table_unittest.cc b/sql/meta_table_unittest.cc index 23b020f..2ffb4bd 100644 --- a/sql/meta_table_unittest.cc +++ b/sql/meta_table_unittest.cc @@ -210,8 +210,8 @@ TEST_F(SQLMetaTableTest, IntValue) { TEST_F(SQLMetaTableTest, Int64Value) { const char kKey[] = "Int Key"; - const int64 kFirstValue = 5000000017LL; - const int64 kSecondValue = 5000000023LL; + const int64 kFirstValue = GG_LONGLONG(5000000017); + const int64 kSecondValue = GG_LONGLONG(5000000023); // Initially, the value isn't there until set. { |