mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-02-10 20:00:51 +00:00
16 lines
399 B
Diff
16 lines
399 B
Diff
Fixes:
|
|
error: trailing semicolon in macro used in expression position
|
|
--> src/filesystem.rs:47:66
|
|
|
|
--- a/src/filesystem.rs
|
|
+++ b/src/filesystem.rs
|
|
@@ -44,7 +44,7 @@ wrap2!(copy, fs, u64);
|
|
|
|
macro_rules! make_error_message {
|
|
($path:ident) => {
|
|
- |err| Error::new(format!("{}: {}", $path.display(), err));
|
|
+ |err| Error::new(format!("{}: {}", $path.display(), err))
|
|
};
|
|
}
|
|
|