Remove redundant parentheses.

This commit is contained in:
2021-08-17 14:27:18 +01:00
parent 7606ab26dd
commit e28d38c8ae
2 changed files with 23 additions and 23 deletions

View File

@@ -275,7 +275,7 @@ namespace Aaru.Checksums
result = new byte[FUZZY_MAX_RESULT];
/* Verify that our elimination was not overeager. */
if(!(bi == 0 || ((ulong)SSDEEP_BS(bi) / 2) * SPAMSUM_LENGTH < _self.TotalSize))
if(!(bi == 0 || (ulong)SSDEEP_BS(bi) / 2 * SPAMSUM_LENGTH < _self.TotalSize))
throw new Exception("Assertion failed");
int resultOff = 0;