| Index: base/file_util.cc
|
| diff --git a/base/file_util.cc b/base/file_util.cc
|
| index f951e3b34c04ca491990e0cb4ec12caaedfb189c..5567f74bff03ca08b51324293d63a1545e532190 100644
|
| --- a/base/file_util.cc
|
| +++ b/base/file_util.cc
|
| @@ -278,7 +278,8 @@ int GetUniquePathNumber(
|
|
|
| FilePath new_path;
|
| for (int count = 1; count <= kMaxUniqueFiles; ++count) {
|
| - new_path = path.InsertBeforeExtensionASCII(StringPrintf(" (%d)", count));
|
| + new_path =
|
| + path.InsertBeforeExtensionASCII(base::StringPrintf(" (%d)", count));
|
| if (!PathExists(new_path) &&
|
| (!have_suffix || !PathExists(FilePath(new_path.value() + suffix)))) {
|
| return count;
|
|
|