nostrdb

an unfairly fast embedded nostr database backed by lmdb
git clone git://jb55.com/nostrdb
Log | Files | Refs | Submodules | README | LICENSE

commit f7b1bc0cdcd0b3d02dc6b96ca8be7b267c9da3e4
parent d21643aa2f7be3323cdddfdf72f6da12f1d5323e
Author: William Casarin <jb55@jb55.com>
Date:   Sat, 30 Dec 2023 19:20:38 -0800

fix clang compile issue

Diffstat:
Msrc/cursor.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/cursor.h b/src/cursor.h @@ -475,7 +475,7 @@ static inline int pull_bytes(struct cursor *cur, int count, const unsigned char } static inline int parse_str(struct cursor *cur, const char *str) { - int i; + unsigned int i; char c, cs; unsigned long len;