small formatting fix

master
elfein 2021-11-12 02:50:07 -08:00
parent 8520cc7e73
commit 5910e19545
1 changed files with 2 additions and 4 deletions

View File

@ -8,7 +8,7 @@ macro_rules! syscall_enum {
($($Variant:ident=$Value:expr,)*) => {
#[repr(usize)]
pub enum SysCall {
$($Variant=$Value),*
$($Variant = $Value),*
}
impl core::convert::From<usize> for SysCall {
@ -42,8 +42,6 @@ syscall_enum! {
SET_HOSTNAME=13,
//File Related syscalls
GET_CONFIG=20, // Get config
SET_CONFIG=21, // Set the config
//
MAKE_DIRECTORY=22, //
DELETE_DIRECTORY=23, //
@ -71,7 +69,7 @@ syscall_enum! {
SOCKET_CONNECT=40,
SOCKET_DISCONNECT=41,
SOCKET_SEND=42,
SOCKET_RECIEVE=43,
SOCKET_RECEIVE=43,