Chromium Code Reviews| Index: net/proxy/proxy_config_service_linux.cc |
| =================================================================== |
| --- net/proxy/proxy_config_service_linux.cc (revision 96969) |
| +++ net/proxy/proxy_config_service_linux.cc (working copy) |
| @@ -557,7 +557,7 @@ |
| bool SchemaExists(const char* schema_name) { |
| const gchar* const* schemas = g_settings_list_schemas(); |
|
vandebo (ex-Chrome)
2011/08/16 20:59:10
I can see how this came about, since the double st
|
| while (*schemas) { |
| - if (strcmp(schema_name, reinterpret_cast<const char*>(schemas)) == 0) |
| + if (strcmp(schema_name, static_cast<const char*>(*schemas)) == 0) |
| return true; |
| schemas++; |
| } |