| Index: components/ntp_snippets/content_suggestions_provider.cc
|
| diff --git a/components/ntp_snippets/content_suggestions_provider.cc b/components/ntp_snippets/content_suggestions_provider.cc
|
| index 696a3813ae76c47cb62cf469873ebe8fa2604f6f..e4565e59d1c708b6f67650e3999940c5e44dd937 100644
|
| --- a/components/ntp_snippets/content_suggestions_provider.cc
|
| +++ b/components/ntp_snippets/content_suggestions_provider.cc
|
| @@ -23,7 +23,8 @@ ContentSuggestionsProvider::~ContentSuggestionsProvider() {}
|
| std::string ContentSuggestionsProvider::MakeUniqueID(
|
| ContentSuggestionsCategory category,
|
| const std::string& within_category_id) {
|
| - return base::StringPrintf(kCombinedIDFormat, int(category),
|
| + return base::StringPrintf(kCombinedIDFormat,
|
| + static_cast<int>(category),
|
| within_category_id.c_str());
|
| }
|
|
|
|
|