diff options
| author | ame <[email protected]> | 2024-03-08 14:14:39 -0600 |
|---|---|---|
| committer | ame <[email protected]> | 2024-03-08 14:14:39 -0600 |
| commit | 652146a3a4780ede6cc99ae56871f8f6bb506284 (patch) | |
| tree | 0aae88a063da581c90b2eec987c77a53dda986ef /src/hash/fasthash.c | |
| parent | 935cd9eed5863614dbb2c677c95aee73753e611f (diff) | |
fixed hashes and net stuff
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 0ac2cc0..993a22a 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,"%08lx",u); + sprintf(digest,"%016llx",u); lua_pushstring(L, digest); return 1; } |
