| Index: net/ftp/ftp_directory_listing_buffer_unittest.cc
|
| diff --git a/net/ftp/ftp_directory_listing_buffer_unittest.cc b/net/ftp/ftp_directory_listing_buffer_unittest.cc
|
| index 9cf557f702ebdd0a946edaa9991b4bf30a66c872..97a915ed18b232a22c94646b6333398bfcf6df3d 100644
|
| --- a/net/ftp/ftp_directory_listing_buffer_unittest.cc
|
| +++ b/net/ftp/ftp_directory_listing_buffer_unittest.cc
|
| @@ -5,6 +5,7 @@
|
| #include "net/ftp/ftp_directory_listing_buffer.h"
|
|
|
| #include "base/file_util.h"
|
| +#include "base/format_macros.h"
|
| #include "base/path_service.h"
|
| #include "base/string_tokenizer.h"
|
| #include "base/string_util.h"
|
| @@ -36,7 +37,7 @@ TEST(FtpDirectoryListingBufferTest, Parse) {
|
| test_dir = test_dir.AppendASCII("ftp");
|
|
|
| for (size_t i = 0; i < arraysize(test_files); i++) {
|
| - SCOPED_TRACE(StringPrintf("Test[%d]: %s", i, test_files[i]));
|
| + SCOPED_TRACE(StringPrintf("Test[%" PRIuS "]: %s", i, test_files[i]));
|
|
|
| net::FtpDirectoryListingBuffer buffer;
|
|
|
|
|