mirror of
https://github.com/monero-project/monero.git
synced 2025-07-26 20:05:28 -04:00
removed some gcc warnings. mainly unused variables.
This commit is contained in:
parent
776b4fc91a
commit
59cc92b388
4 changed files with 1 additions and 7 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue