aboutsummaryrefslogtreecommitdiff
path: root/src/util.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/util.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.rs b/src/util.rs
index 6051a96..581340d 100644
--- a/src/util.rs
+++ b/src/util.rs
@@ -16,7 +16,7 @@ macro_rules! match_variant {
$x(x) => Ok(x.clone()),
err => Err(err),
}
- .unwrap();
+ .unwrap()
};
}