Reformat with trailing comma

This commit is contained in:
Luke Jones
2025-02-14 16:06:20 +13:00
parent 0bdf0474c9
commit 2c006699f2
113 changed files with 791 additions and 792 deletions

View File

@@ -17,7 +17,7 @@ use animatrix::*;
pub struct VirtAnimeMatrix {
device: UHIDDevice<std::fs::File>,
buffer: [u8; 640],
animatrix: AniMatrix
animatrix: AniMatrix,
}
impl VirtAnimeMatrix {
@@ -84,10 +84,10 @@ impl VirtAnimeMatrix {
/* 85 bytes */
]
.to_vec()
.to_vec(),
})
.map_err(|err| error!("Could not create virtual device: {:?}", err))
.expect("Could not create virtual device")
.expect("Could not create virtual device"),
}
}