summaryrefslogtreecommitdiffstats
path: root/openpgp/src/packet/container.rs
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp/src/packet/container.rs')
-rw-r--r--openpgp/src/packet/container.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/openpgp/src/packet/container.rs b/openpgp/src/packet/container.rs
index 5a043634..509b7dcb 100644
--- a/openpgp/src/packet/container.rs
+++ b/openpgp/src/packet/container.rs
@@ -95,7 +95,7 @@ pub enum Body {
Structured(Vec<Packet>),
}
-assert_send_and_sync!{Body}
+assert_send_and_sync!(Body);
/// Holds packet bodies.
///
@@ -110,7 +110,7 @@ pub struct Container {
body_digest: Vec<u8>,
}
-assert_send_and_sync!{Container}
+assert_send_and_sync!(Container);
impl std::ops::Deref for Container {
type Target = Body;