fail -> panic
This commit is contained in:
parent
3141e7285f
commit
773f639598
1 changed files with 2 additions and 2 deletions
|
@ -251,7 +251,7 @@ impl<W: Writer+Seek> GenericZipWriter<W>
|
|||
match *self
|
||||
{
|
||||
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
|
||||
{
|
||||
Storer(w) => w,
|
||||
_ => fail!("Should have switched to stored beforehand"),
|
||||
_ => panic!("Should have switched to stored beforehand"),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue