Skip to content

Commit a1103d1

Browse files
committed
minor changes to pass the format check
1 parent 4d35000 commit a1103d1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/arch/x86_64/kernel/mod.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ macro_rules! syscall {
7979
$arg2 as u64,
8080
$arg3 as u64,
8181
$arg4 as u64,
82-
)
82+
)
8383
};
8484

8585
($arg0:expr, $arg1:expr, $arg2:expr, $arg3:expr, $arg4:expr, $arg5:expr) => {
@@ -90,7 +90,7 @@ macro_rules! syscall {
9090
$arg3 as u64,
9191
$arg4 as u64,
9292
$arg5 as u64,
93-
)
93+
)
9494
};
9595

9696
($arg0:expr, $arg1:expr, $arg2:expr, $arg3:expr, $arg4:expr, $arg5:expr, $arg6:expr) => {
@@ -102,7 +102,7 @@ macro_rules! syscall {
102102
$arg4 as u64,
103103
$arg5 as u64,
104104
$arg6 as u64,
105-
)
105+
)
106106
};
107107

108108
($arg0:expr, $arg1:expr, $arg2:expr, $arg3:expr, $arg4:expr, $arg5:expr, $arg6:expr, $arg7:expr) => {
@@ -115,7 +115,7 @@ macro_rules! syscall {
115115
$arg5 as u64,
116116
$arg6 as u64,
117117
$arg7 as u64,
118-
)
118+
)
119119
};
120120
}
121121

0 commit comments

Comments
 (0)