chore: cargo fmt

This commit is contained in:
TheOddGarlic 2022-08-01 13:50:07 +03:00
parent f801eea0aa
commit 983550ae54
4 changed files with 7 additions and 8 deletions

View file

@ -196,7 +196,6 @@ unsafe fn pci_config_write(bus: u8, device: u8, func: u8, offset: u8, value: u32
// write data
Port::<u32>::new(0xCFC).write(value);
}
fn get_header_type(bus: u8, device: u8, function: u8) -> u8 {

View file

@ -174,7 +174,7 @@ pub fn command_parser(user: String, command: String) {
options.read(true);
let file = {
let path = format!("/home/{user}/bins/{bin_name}.wasm");
if let Ok(file ) = fs.open(&path.as_bytes(), &options) {
if let Ok(file) = fs.open(&path.as_bytes(), &options) {
file
} else {
let path = format!("/shared/bins/{bin_name}.wasm");

View file

@ -1,4 +1,4 @@
#![cfg(feature="image")]
#![cfg(feature = "image")]
use crate::render::{Canvas, Pixel};
use crate::types::Color;

View file

@ -10,7 +10,7 @@
//! let svg_xml = code.render::<svg::Color>().build();
//! println!("{}", svg_xml);
#![cfg(feature="svg")]
#![cfg(feature = "svg")]
use std::fmt::Write;
use std::marker::PhantomData;