mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Remove redundant parentheses.
This commit is contained in:
@@ -518,7 +518,7 @@ namespace Aaru.Filesystems
|
||||
XmlFsType.FreeClustersSpecified = true;
|
||||
|
||||
sb.AppendFormat("{0} inodes with {1} free inodes ({2}%)", supblk.inodes, supblk.free_inodes,
|
||||
(supblk.free_inodes * 100) / supblk.inodes).AppendLine();
|
||||
supblk.free_inodes * 100 / supblk.inodes).AppendLine();
|
||||
|
||||
if(supblk.first_inode > 0)
|
||||
sb.AppendFormat("First inode is {0}", supblk.first_inode).AppendLine();
|
||||
|
||||
Reference in New Issue
Block a user