mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-30 12:37:49 +00:00
fix: remove unused parens
This commit is contained in:
parent
c56f8f6807
commit
f56a7d30ba
1 changed files with 1 additions and 1 deletions
|
@ -745,7 +745,7 @@ fn preserve_hardlinks(
|
|||
std::io::Error::last_os_error()
|
||||
).into());
|
||||
}
|
||||
inode = (((*stat).nFileIndexHigh as u64) << 32 | (*stat).nFileIndexLow as u64);
|
||||
inode = ((*stat).nFileIndexHigh as u64) << 32 | (*stat).nFileIndexLow as u64;
|
||||
nlinks = (*stat).nNumberOfLinks as u64;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue