diff options
| author | amelia squires <[email protected]> | 2025-09-30 18:10:02 -0500 |
|---|---|---|
| committer | amelia squires <[email protected]> | 2025-09-30 18:10:02 -0500 |
| commit | a67dc94484cf9869793fc1861914b800a6559a74 (patch) | |
| tree | 68e9a016380776a6a6d90159722d1514756a4929 /src/hash/djb2.c | |
| parent | 795284d3b173473003129882739f371f37059adb (diff) | |
fix indentation!!!
Diffstat (limited to 'src/hash/djb2.c')
| -rw-r--r-- | src/hash/djb2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hash/djb2.c b/src/hash/djb2.c index e75a0ed..a001e8f 100644 --- a/src/hash/djb2.c +++ b/src/hash/djb2.c @@ -45,7 +45,7 @@ int l_djb2(lua_State* L){ if(lua_gettop(L) == 0) return l_djb2_init(L);
size_t len = 0;
uint8_t* a = (uint8_t*)luaL_checklstring(L, 1, &len);
-
+
char digest[64];
uint32_t u = djb2(a, len);
|
