fix some warnings

This commit is contained in:
2026-04-10 18:36:16 +02:00
parent eb7c29abb1
commit e55a0b54d0
3 changed files with 3 additions and 3 deletions

View File

@@ -34,7 +34,7 @@ static inline int eq_key32(key32_t a, key32_t b) {
return memcmp(a.bytes, b.bytes, 32) == 0; return memcmp(a.bytes, b.bytes, 32) == 0;
} }
KHASH_INIT(balance_sheet_map_m, key32_t, balance_sheet_entry_t, 1, hash_key32, eq_key32); KHASH_INIT(balance_sheet_map_m, key32_t, balance_sheet_entry_t, 1, hash_key32, eq_key32)
extern khash_t(balance_sheet_map_m)* sheetMap; extern khash_t(balance_sheet_map_m)* sheetMap;
void BalanceSheet_Init(); void BalanceSheet_Init();

View File

@@ -1,4 +1,4 @@
#include "../../include/blake2/blake2.h" #include <blake2/blake2.h>
#include <openssl/evp.h> #include <openssl/evp.h>
#include <string.h> #include <string.h>