diff options
Diffstat (limited to 'chrome/browser/history/text_database.cc')
-rw-r--r-- | chrome/browser/history/text_database.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/history/text_database.cc b/chrome/browser/history/text_database.cc index 0c1242f..0eab85a 100644 --- a/chrome/browser/history/text_database.cc +++ b/chrome/browser/history/text_database.cc @@ -130,7 +130,7 @@ std::wstring TextDatabase::IDToFileName(DBIdent id) { // "History Index 2008-01". However, we don't make assumptions about this // scheme: the caller should assign IDs as it feels fit with the knowledge // that they will apppear on disk in this form. - return StringPrintf(L"%s%d-%02d", file_base(), id / 100, id % 100); + return StringPrintf(L"%ls%d-%02d", file_base(), id / 100, id % 100); } // static |