summary refs log tree commit diff
path: root/tpm2/src
diff options
context:
space:
mode:
Diffstat (limited to 'tpm2/src')
-rw-r--r--tpm2/src/lib.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/tpm2/src/lib.rs b/tpm2/src/lib.rs
index 53022c6..4de849c 100644
--- a/tpm2/src/lib.rs
+++ b/tpm2/src/lib.rs
@@ -165,9 +165,7 @@ fn tpm_manufacture(first_time: bool) {
     // Unsafe only because this is over FFI and we need to know that the
     // signature declared by tpm2-sys is ABI-compatible with the symbol provided
     // by libtpm2. There are no other invariants to uphold.
-    let ret: c_int = unsafe {
-        tpm2_sys::TPM_Manufacture(first_time as c_int)
-    };
+    let ret: c_int = unsafe { tpm2_sys::TPM_Manufacture(first_time as c_int) };
 
     // We expect that the TPM must not already have been manufactured. The
     // SIMULATOR_EXISTS atomic flag guards calls to this function such that only