fail -> panic

This commit is contained in:
Steve Klabnik 2014-10-30 00:23:50 -04:00
parent 3141e7285f
commit 773f639598

View file

@ -251,7 +251,7 @@ impl<W: Writer+Seek> GenericZipWriter<W>
match *self match *self
{ {
Storer(ref mut w) => w, Storer(ref mut w) => w,
_ => fail!("Should have switched to stored beforehand"), _ => panic!("Should have switched to stored beforehand"),
} }
} }
@ -260,7 +260,7 @@ impl<W: Writer+Seek> GenericZipWriter<W>
match self match self
{ {
Storer(w) => w, Storer(w) => w,
_ => fail!("Should have switched to stored beforehand"), _ => panic!("Should have switched to stored beforehand"),
} }
} }
} }