diff options
author | Josh Matthews <josh@joshmatthews.net> | 2015-04-07 10:49:02 -0400 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2015-04-07 16:13:37 -0400 |
commit | 1757afef27a868d8d9725d3fb09977202aa3907c (patch) | |
tree | f8cbeac940f2293886fa040133789d3b1a2d3ac2 /components/net/file_loader.rs | |
parent | 3fb666cf606f835a9ab9165339e34023ab83a358 (diff) | |
download | servo-1757afef27a868d8d9725d3fb09977202aa3907c.tar.gz servo-1757afef27a868d8d9725d3fb09977202aa3907c.zip |
Remove int_uint from net.
Diffstat (limited to 'components/net/file_loader.rs')
-rw-r--r-- | components/net/file_loader.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/net/file_loader.rs b/components/net/file_loader.rs index 83fcc7ed59f..49a451d2abb 100644 --- a/components/net/file_loader.rs +++ b/components/net/file_loader.rs @@ -15,7 +15,7 @@ use std::sync::Arc; use std::sync::mpsc::Sender; use util::task::spawn_named; -static READ_SIZE: uint = 8192; +static READ_SIZE: usize = 8192; enum ReadStatus { Partial(Vec<u8>), |