summaryrefslogtreecommitdiffstats
path: root/openpgp/src/packet/seip.rs
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2020-12-08 09:29:18 +0100
committerAzul <azul@riseup.net>2020-12-08 12:51:56 +0100
commit6f77fb84cec4d3d62d3885ce6270919bc81419dc (patch)
tree4102eb7ebfa45ae5a94d705f652a025b4065d5a6 /openpgp/src/packet/seip.rs
parent15429e90e6ec1ff1401500f592e8698a89b8cceb (diff)
openpgp: Use parens for assert_send_and_sync!.
Diffstat (limited to 'openpgp/src/packet/seip.rs')
-rw-r--r--openpgp/src/packet/seip.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp/src/packet/seip.rs b/openpgp/src/packet/seip.rs
index 4263e6ae..e79bb2bb 100644
--- a/openpgp/src/packet/seip.rs
+++ b/openpgp/src/packet/seip.rs
@@ -31,7 +31,7 @@ pub struct SEIP1 {
container: packet::Container,
}
-assert_send_and_sync!{SEIP1}
+assert_send_and_sync!(SEIP1);
impl std::ops::Deref for SEIP1 {
type Target = packet::Container;