| Index: chrome/browser/feedback/system_logs/log_sources/chrome_internal_log_source.cc
|
| diff --git a/chrome/browser/feedback/system_logs/log_sources/chrome_internal_log_source.cc b/chrome/browser/feedback/system_logs/log_sources/chrome_internal_log_source.cc
|
| index 0f4eb5dd3e4ae07cc2ad402f1e939c890b9acb85..59b34da2fa05584c6650f4ecdbd5a18932fc5a44 100644
|
| --- a/chrome/browser/feedback/system_logs/log_sources/chrome_internal_log_source.cc
|
| +++ b/chrome/browser/feedback/system_logs/log_sources/chrome_internal_log_source.cc
|
| @@ -172,7 +172,7 @@ void ChromeInternalLogSource::PopulateSyncLogs(SystemLogsResponse* response) {
|
| for (base::ListValue::iterator it = details->begin();
|
| it != details->end(); ++it) {
|
| base::DictionaryValue* dict = NULL;
|
| - if ((*it)->GetAsDictionary(&dict)) {
|
| + if (it->GetAsDictionary(&dict)) {
|
| std::string title;
|
| dict->GetString("title", &title);
|
| if (title == syncer::sync_ui_util::kIdentityTitle) {
|
|
|