remove spaces within tabs (\t( )+\t)

This commit is contained in:
Martin Willi
2009-09-04 15:00:19 +02:00
parent 323f9f990f
commit b9b8a98f47
45 changed files with 103 additions and 103 deletions
+1 -1
View File
@@ -227,7 +227,7 @@ static void MD4Update(private_md4_hasher_t *this, u_int8_t *input, size_t inputL
for (i = partLen; i + 63 < inputLen; i += 64)
{
MD4Transform (this->state, &input[i]);
MD4Transform (this->state, &input[i]);
}
index = 0;
}