Index: components/history/core/browser/top_sites_database.cc |
diff --git a/components/history/core/browser/top_sites_database.cc b/components/history/core/browser/top_sites_database.cc |
index d1f024d315a690fe8a6c37c0bea0132009b19970..74ab1156ddaf98ca679cb082ea3e2b530e68e458 100644 |
--- a/components/history/core/browser/top_sites_database.cc |
+++ b/components/history/core/browser/top_sites_database.cc |
@@ -85,7 +85,7 @@ |
std::vector<std::string> redirects; |
for (size_t i = 0; i < url.redirects.size(); i++) |
redirects.push_back(url.redirects[i].spec()); |
- return base::JoinString(redirects, " "); |
+ return JoinString(redirects, ' '); |
} |
// Decodes redirects from a string and sets them for the url. |