From 773f639598a79e3fefc9c0a89b7a8c1966d5c211 Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Thu, 30 Oct 2014 00:23:50 -0400 Subject: [PATCH] fail -> panic --- src/writer.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/writer.rs b/src/writer.rs index c3f7d29a..e89a1d6e 100644 --- a/src/writer.rs +++ b/src/writer.rs @@ -251,7 +251,7 @@ impl GenericZipWriter 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 GenericZipWriter match self { Storer(w) => w, - _ => fail!("Should have switched to stored beforehand"), + _ => panic!("Should have switched to stored beforehand"), } } }