fix(lsm): properly calculate db file size

This commit is contained in:
Jef Roosens 2024-08-29 11:12:56 +02:00
parent 3952496378
commit 7c938d592e
Signed by: Jef Roosens
GPG key ID: 02D4C0997E74717B
2 changed files with 15 additions and 4 deletions

View file

@ -19,6 +19,8 @@
} \
}
#define LSM_MAX(x, y) ((x) > (y) ? (x) : (y))
typedef enum lsm_error {
lsm_error_ok = 0,
lsm_error_failed_alloc = 1,