refactor: remove unnecessary semicolon in error macro
This commit is contained in:
parent
11db47b005
commit
e76c36ab9f
1 changed files with 1 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
#[macro_export]
|
#[macro_export]
|
||||||
macro_rules! error {
|
macro_rules! error {
|
||||||
($msg:expr) => {
|
($msg:expr) => {
|
||||||
eprintln!("[ERROR] {}", $msg);
|
eprintln!("[ERROR] {}", $msg)
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue