summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
Diffstat (limited to 'net')
-rw-r--r--net/proxy/proxy_script_fetcher.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/proxy/proxy_script_fetcher.cc b/net/proxy/proxy_script_fetcher.cc
index a397caa..f2e5a39 100644
--- a/net/proxy/proxy_script_fetcher.cc
+++ b/net/proxy/proxy_script_fetcher.cc
@@ -224,7 +224,7 @@ void ProxyScriptFetcherImpl::OnResponseStarted(URLRequest* request) {
if (logging::GetMinLogLevel() <= logging::LOG_INFO) {
std::string mime_type;
cur_request_->GetMimeType(&mime_type);
- if (!!IsPacMimeType(mime_type)) {
+ if (!IsPacMimeType(mime_type)) {
LOG(INFO) << "Fetched PAC script does not have a proper mime type: "
<< mime_type;
}