Skip to content

Commit 6264c29

Browse files
committed
Fix formatting
Signed-off-by: Joe Rozner <[email protected]>
1 parent 2289253 commit 6264c29

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

cryptoki/src/object.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -942,7 +942,10 @@ impl TryFrom<CK_ATTRIBUTE> for Attribute {
942942
}
943943
}
944944
}
945-
AttributeType::VendorDefined(t) => Ok(Attribute::VendorDefined((AttributeType::VendorDefined(t), val.to_vec()))),
945+
AttributeType::VendorDefined(t) => Ok(Attribute::VendorDefined((
946+
AttributeType::VendorDefined(t),
947+
val.to_vec(),
948+
))),
946949
}
947950
}
948951
}

0 commit comments

Comments
 (0)