Make dedup hash table a prime number.

This commit is contained in:
Dianne Skoll
2024-11-13 14:09:58 -05:00
parent 36e4f52828
commit 406629144f

View File

@@ -17,7 +17,7 @@
#include <stdlib.h>
#include <string.h>
#define DEDUPE_HASH_SLOTS 32
#define DEDUPE_HASH_SLOTS 31
typedef struct dedupe_entry {
struct dedupe_entry *next;
int trigger_date;