summary refs log tree commit diff
path: root/kvm
diff options
context:
space:
mode:
authorDaniel Verkamp <dverkamp@chromium.org>2018-10-17 16:26:20 -0700
committerchrome-bot <chrome-bot@chromium.org>2018-10-18 14:53:32 -0700
commitc1f08277f9dc86a15ce8cbdc1f7609e3b5c9a719 (patch)
tree795e05403096f1df229d60d019c458133cb34f7d /kvm
parentf6b58e4cf28991c6d436c33c32e94a457dff0ebd (diff)
downloadcrosvm-c1f08277f9dc86a15ce8cbdc1f7609e3b5c9a719.tar
crosvm-c1f08277f9dc86a15ce8cbdc1f7609e3b5c9a719.tar.gz
crosvm-c1f08277f9dc86a15ce8cbdc1f7609e3b5c9a719.tar.bz2
crosvm-c1f08277f9dc86a15ce8cbdc1f7609e3b5c9a719.tar.lz
crosvm-c1f08277f9dc86a15ce8cbdc1f7609e3b5c9a719.tar.xz
crosvm-c1f08277f9dc86a15ce8cbdc1f7609e3b5c9a719.tar.zst
crosvm-c1f08277f9dc86a15ce8cbdc1f7609e3b5c9a719.zip
cargo fmt aarch64 and kvm
A few non-rustfmt changes slipped in since the tree-wide formatting
pass.

BUG=None
TEST=Re-run `cargo fmt` and verify that it makes no further changes.

Change-Id: Ic5afb20dabc1087e5d6f54862e6b8b47c5f5608d
Signed-off-by: Daniel Verkamp <dverkamp@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/1287369
Commit-Ready: ChromeOS CL Exonerator Bot <chromiumos-cl-exonerator@appspot.gserviceaccount.com>
Reviewed-by: Dylan Reid <dgreid@chromium.org>
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 {