Skip to content

Commit 19066e5

Browse files
committed
Fix fmt
1 parent c0579fd commit 19066e5

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

vm/vmgs/vmgstool/src/main.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1042,10 +1042,7 @@ async fn vmgs_file_query_encryption(file_path: impl AsRef<Path>) -> Result<(), E
10421042

10431043
let vmgs = vmgs_file_open(file_path, None as Option<PathBuf>, OpenMode::ReadOnly).await?;
10441044

1045-
match (
1046-
vmgs.get_encryption_algorithm(),
1047-
vmgs_get_gsp_type(&vmgs),
1048-
) {
1045+
match (vmgs.get_encryption_algorithm(), vmgs_get_gsp_type(&vmgs)) {
10491046
(EncryptionAlgorithm::NONE, scheme) => {
10501047
println!("not encrypted (encryption scheme: {scheme:?})");
10511048
Err(Error::NotEncrypted)

0 commit comments

Comments
 (0)