Skip to content

Commit 3df67b4

Browse files
committed
Fix formatting
Signed-off-by: Lars Persson <[email protected]>
1 parent e59bf7e commit 3df67b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cryptoki/src/session/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ pub enum UserType {
9191
/// Context Specific
9292
ContextSpecific,
9393
/// Vendor extension
94-
VendorExtension(u32)
94+
VendorExtension(u32),
9595
}
9696

9797
impl From<UserType> for CK_USER_TYPE {
@@ -100,7 +100,7 @@ impl From<UserType> for CK_USER_TYPE {
100100
UserType::So => CKU_SO,
101101
UserType::User => CKU_USER,
102102
UserType::ContextSpecific => CKU_CONTEXT_SPECIFIC,
103-
UserType::VendorExtension(n) => n as CK_USER_TYPE
103+
UserType::VendorExtension(n) => n as CK_USER_TYPE,
104104
}
105105
}
106106
}

0 commit comments

Comments
 (0)