| Index: chromeos/dbus/shill_ipconfig_client.cc
|
| diff --git a/chromeos/dbus/shill_ipconfig_client.cc b/chromeos/dbus/shill_ipconfig_client.cc
|
| index c58c0c06fbab3c517ae43af37f5b387b2bbc5634..84c1e1a11b18ff8ff566b4943ce3e4c1832817b4 100644
|
| --- a/chromeos/dbus/shill_ipconfig_client.cc
|
| +++ b/chromeos/dbus/shill_ipconfig_client.cc
|
| @@ -126,10 +126,10 @@
|
| for (base::ListValue::const_iterator it = list_value->begin();
|
| it != list_value->end();
|
| ++it) {
|
| - DLOG_IF(ERROR, it->GetType() != base::Value::Type::STRING)
|
| - << "Unexpected type " << it->GetType();
|
| + DLOG_IF(ERROR, (*it)->GetType() != base::Value::Type::STRING)
|
| + << "Unexpected type " << (*it)->GetType();
|
| std::string str;
|
| - it->GetAsString(&str);
|
| + (*it)->GetAsString(&str);
|
| array_writer.AppendString(str);
|
| }
|
| variant_writer.CloseContainer(&array_writer);
|
|
|