fix: warning: trailing semicolon in macro used in expression position

This commit is contained in:
MeiK 2022-05-21 19:35:38 +08:00
parent 1106b73423
commit 7a6d9c8bb3
2 changed files with 1 additions and 1 deletions

BIN
.DS_Store vendored Normal file

Binary file not shown.

View File

@ -33,7 +33,7 @@ macro_rules! try_io {
match $expression {
Ok(val) => val,
Err(e) => return Err(crate::error::Error::IOError(e)),
};
}
};
}