diff options
| author | ame <[email protected]> | 2024-04-05 17:34:39 -0500 |
|---|---|---|
| committer | ame <[email protected]> | 2024-04-05 17:34:39 -0500 |
| commit | b51f233bc5e304102a51949db1e235aafe283b8e (patch) | |
| tree | 25b83526a8c8b057cf9493542fb650ead921d9f3 /src/hash/fasthash.c | |
| parent | bf8bd006189776ae360977c19e7096d73586fa50 (diff) | |
fix warnings
Diffstat (limited to 'src/hash/fasthash.c')
| -rw-r--r-- | src/hash/fasthash.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |
