| Index: sql/connection_unittest.cc
|
| diff --git a/sql/connection_unittest.cc b/sql/connection_unittest.cc
|
| index 24d21faa28f7806d66841f83aee89d1c27990ec2..e3b97739ed1cc9ceb7b058ab361c2e67e6084157 100644
|
| --- a/sql/connection_unittest.cc
|
| +++ b/sql/connection_unittest.cc
|
| @@ -198,7 +198,7 @@ TEST_F(SQLConnectionTest, GetLastInsertRowId) {
|
| ASSERT_TRUE(db().Execute("INSERT INTO foo (value) VALUES (12)"));
|
|
|
| // Last insert row ID should be valid.
|
| - int64 row = db().GetLastInsertRowId();
|
| + int64_t row = db().GetLastInsertRowId();
|
| EXPECT_LT(0, row);
|
|
|
| // It should be the primary key of the row we just inserted.
|
|
|