| 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 68e086d40919d1fad966f59750d2156233ab4dd3..886b108b294a3112c395006c293d63e1ca635f2f 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
|
| @@ -173,7 +173,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) {
|
|
|