Fix issues (remove lmdb.h references, fix mongoose warning)

This commit is contained in:
Tobias Reisinger 2024-04-17 00:01:25 +02:00
parent c49ada88c3
commit 5d98a0579b
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
8 changed files with 16 additions and 5 deletions

2
vendor/mongoose.c vendored
View file

@ -1108,7 +1108,7 @@ void cs_md5_update(cs_md5_ctx *ctx, const unsigned char *buf, size_t len) {
memcpy(ctx->in, buf, len);
}
void cs_md5_final(unsigned char digest[16], cs_md5_ctx *ctx) {
void cs_md5_final(unsigned char *digest, cs_md5_ctx *ctx) {
unsigned count;
unsigned char *p;
uint32_t *a;