Add missing space

This commit is contained in:
Bouke van der Bijl 2013-08-30 12:53:05 +02:00
parent f10e50a4be
commit a2ffceaedd

View File

@ -619,7 +619,7 @@ pub trait ReaderUtil {
impl<T:Reader> ReaderUtil for T {
fn read_bytes(&self,len: uint) -> ~[u8] {
fn read_bytes(&self, len: uint) -> ~[u8] {
let mut bytes = vec::with_capacity(len);
unsafe { vec::raw::set_len(&mut bytes, len); }