From b51f233bc5e304102a51949db1e235aafe283b8e Mon Sep 17 00:00:00 2001 From: ame Date: Fri, 5 Apr 2024 17:34:39 -0500 Subject: fix warnings --- src/hash/fasthash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/hash/fasthash.c') diff --git a/src/hash/fasthash.c b/src/hash/fasthash.c index 993a22a..bef892b 100644 --- a/src/hash/fasthash.c +++ b/src/hash/fasthash.c @@ -62,7 +62,7 @@ int l_fasthash64(lua_State* L){ char digest[64]; uint64_t u = fasthash64(a, len, seed); - sprintf(digest,"%016llx",u); + sprintf(digest,"%016lx",u); lua_pushstring(L, digest); return 1; } -- cgit v1.2.3