aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/net/http_loader.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/net/http_loader.rs')
-rw-r--r--src/components/net/http_loader.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/net/http_loader.rs b/src/components/net/http_loader.rs
index 26b52726c79..d6aba51e893 100644
--- a/src/components/net/http_loader.rs
+++ b/src/components/net/http_loader.rs
@@ -57,7 +57,7 @@ fn load(mut url: Url, start_chan: Chan<LoadResponse>) {
info!("requesting {:s}", url.to_str());
let request = RequestWriter::<TcpStream>::new(Get, url.clone());
- let mut writer = match request {
+ let writer = match request {
Ok(w) => ~w,
Err(_) => {
send_error(url, start_chan);