Fix: Use $crate instead of crate in macro
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
parent
f280c4b8fa
commit
6389141015
|
@ -173,7 +173,7 @@ from! {
|
|||
macro_rules! format_err {
|
||||
( $( $arg:tt )* ) => {
|
||||
{
|
||||
crate::Error::Other(format!($($arg)*))
|
||||
$crate::Error::Other(format!($($arg)*))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue