summaryrefslogtreecommitdiffstats
path: root/base/gfx/font_utils.cc
diff options
context:
space:
mode:
Diffstat (limited to 'base/gfx/font_utils.cc')
-rw-r--r--base/gfx/font_utils.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/gfx/font_utils.cc b/base/gfx/font_utils.cc
index 9ca1852..cf8fce4 100644
--- a/base/gfx/font_utils.cc
+++ b/base/gfx/font_utils.cc
@@ -295,7 +295,7 @@ bool GetDerivedFontData(const wchar_t *family,
// TODO(jungshik) : This comes up pretty high in the profile so that
// we need to measure whether using SHA256 (after coercing all the
// fields to char*) is faster than StringPrintf.
- std::wstring font_key = StringPrintf(L"%1d:%d:%s", style, logfont->lfHeight,
+ std::wstring font_key = StringPrintf(L"%1d:%d:%ls", style, logfont->lfHeight,
family);
FontDataCache::const_iterator iter = font_data_cache->find(font_key);
FontData *derived;