add parentheses to macro

This commit is contained in:
Francois Perrad
2016-01-01 09:40:24 +01:00
committed by Matt Johnston
parent 893d7be5bf
commit edea73b1f8
3 changed files with 5 additions and 5 deletions

View File

@@ -32,7 +32,7 @@
/* this is used to generate unique output from the same hashpool */
static uint32_t counter = 0;
/* the max value for the counter, so it won't integer overflow */
#define MAX_COUNTER 1<<30
#define MAX_COUNTER (1<<30)
static unsigned char hashpool[SHA1_HASH_SIZE] = {0};
static int donerandinit = 0;