diff options
author | wtc@chromium.org <wtc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-22 01:40:17 +0000 |
---|---|---|
committer | wtc@chromium.org <wtc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-22 01:40:17 +0000 |
commit | 7417a7de5226d08a2785a18976abeb7d28ce6a67 (patch) | |
tree | 5714423091a835f83976961540ea42fd97e60a67 /net | |
parent | 2c750235d42d8da752239a1505d2318f7e9e7b09 (diff) | |
download | chromium_src-7417a7de5226d08a2785a18976abeb7d28ce6a67.zip chromium_src-7417a7de5226d08a2785a18976abeb7d28ce6a67.tar.gz chromium_src-7417a7de5226d08a2785a18976abeb7d28ce6a67.tar.bz2 |
Fix a typo (one extra '!') in the previous checkin (r13601).
R=eroman
Review URL: http://codereview.chromium.org/113730
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16696 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r-- | net/proxy/proxy_script_fetcher.cc | 2 |
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; } |