removed some gcc warnings. mainly unused variables.

This commit is contained in:
roman 2015-08-23 17:59:24 +02:00
parent 776b4fc91a
commit 59cc92b388
4 changed files with 1 additions and 7 deletions

View file

@ -204,10 +204,9 @@ static void OutputTransformation(hashState *ctx) {
/* initialise context */
static void Init(hashState* ctx) {
int i = 0;
/* allocate memory for state and data buffer */
for(;i<(SIZE512/sizeof(uint32_t));i++)
for(unsigned i = 0; i < (SIZE512/sizeof(uint32_t)); i++)
{
ctx->chaining[i] = 0;
}