Fix incorrect comment

This commit is contained in:
Russell Belfer 2013-07-24 13:44:35 -07:00
parent 397357a048
commit f5c4d02251

View File

@ -512,7 +512,7 @@ static int similarity_measure(
return 0; return 0;
} }
/* check if file sizes too small or nowhere near each other */ /* check if file sizes are nowhere near each other */
if (a_file->size > 127 && if (a_file->size > 127 &&
b_file->size > 127 && b_file->size > 127 &&
(a_file->size > (b_file->size << 4) || (a_file->size > (b_file->size << 4) ||