diff options
Diffstat (limited to 'chrome/browser/history/text_database.cc')
-rw-r--r-- | chrome/browser/history/text_database.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/history/text_database.cc b/chrome/browser/history/text_database.cc index 60aa7fd..6bf3270 100644 --- a/chrome/browser/history/text_database.cc +++ b/chrome/browser/history/text_database.cc @@ -88,8 +88,8 @@ FilePath TextDatabase::IDToFileName(DBIdent id) { // scheme: the caller should assign IDs as it feels fit with the knowledge // that they will apppear on disk in this form. FilePath::StringType filename(file_base()); - StringAppendF(&filename, FILE_PATH_LITERAL("%d-%02d"), - id / 100, id % 100); + base::StringAppendF(&filename, FILE_PATH_LITERAL("%d-%02d"), + id / 100, id % 100); return FilePath(filename); } |