summary refs log tree commit diff
path: root/kvm
diff options
context:
space:
mode:
Diffstat (limited to 'kvm')
-rw-r--r--kvm/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/kvm/src/lib.rs b/kvm/src/lib.rs
index 37447cf..f9188e0 100644
--- a/kvm/src/lib.rs
+++ b/kvm/src/lib.rs
@@ -1445,7 +1445,7 @@ impl Vcpu {
         // kvm_sigmask.len  = size_of::<sigset_t>() as u32;
         kvm_sigmask[0].len = 8;
         // Ensure the length is not too big.
-         const _ASSERT: usize = size_of::<sigset_t>() - 8 as usize;
+        const _ASSERT: usize = size_of::<sigset_t>() - 8 as usize;
 
         // Safe as we allocated exactly the needed space
         unsafe {