mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
use correct unsigned type
This commit is contained in:
parent
59cc92b388
commit
3b5330e895
1 changed files with 2 additions and 1 deletions
|
@ -8,6 +8,7 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <stddef.h>
|
||||||
#include "groestl.h"
|
#include "groestl.h"
|
||||||
#include "groestl_tables.h"
|
#include "groestl_tables.h"
|
||||||
|
|
||||||
|
@ -206,7 +207,7 @@ static void OutputTransformation(hashState *ctx) {
|
||||||
static void Init(hashState* ctx) {
|
static void Init(hashState* ctx) {
|
||||||
/* allocate memory for state and data buffer */
|
/* allocate memory for state and data buffer */
|
||||||
|
|
||||||
for(unsigned i = 0; i < (SIZE512/sizeof(uint32_t)); i++)
|
for(size_t i = 0; i < (SIZE512/sizeof(uint32_t)); i++)
|
||||||
{
|
{
|
||||||
ctx->chaining[i] = 0;
|
ctx->chaining[i] = 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue