| Index: net/ftp/ftp_directory_listing_parser_unittest.cc
|
| diff --git a/net/ftp/ftp_directory_listing_parser_unittest.cc b/net/ftp/ftp_directory_listing_parser_unittest.cc
|
| index 08abf17be794b91e819fbc022c033280e45128a0..5c98c23f6301c757e10645ae62b65e899fdf00ce 100644
|
| --- a/net/ftp/ftp_directory_listing_parser_unittest.cc
|
| +++ b/net/ftp/ftp_directory_listing_parser_unittest.cc
|
| @@ -81,7 +81,7 @@ TEST_P(FtpDirectoryListingParserTest, Parse) {
|
| for (size_t i = 0; i < lines.size() / 9; i++) {
|
| std::string type(lines[9 * i]);
|
| std::string name(lines[9 * i + 1]);
|
| - int64 size;
|
| + int64_t size;
|
| base::StringToInt64(lines[9 * i + 2], &size);
|
|
|
| SCOPED_TRACE(base::StringPrintf("Filename: %s", name.c_str()));
|
|
|