From a67dc94484cf9869793fc1861914b800a6559a74 Mon Sep 17 00:00:00 2001 From: amelia squires Date: Tue, 30 Sep 2025 18:10:02 -0500 Subject: fix indentation!!! --- src/hash/pearson.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/hash/pearson.c') diff --git a/src/hash/pearson.c b/src/hash/pearson.c index d6a5d1b..74546a4 100644 --- a/src/hash/pearson.c +++ b/src/hash/pearson.c @@ -45,7 +45,7 @@ uint8_t pearson(uint8_t* aa, size_t len){ int l_setpearson(lua_State* L){ luaL_checktype(L, 1, LUA_TTABLE); size_t len = lua_objlen(L,1); - + if(len != 256) { p_error("new table must have a length of 256"); exit(0); @@ -55,7 +55,7 @@ int l_setpearson(lua_State* L){ lua_pushinteger(L,i+1); lua_gettable(L,1); - + pearson_table[i] = luaL_checknumber(L, -1); lua_pop(L,1); } @@ -81,7 +81,7 @@ int l_pearson(lua_State* L){ char digest[8]; uint8_t u = pearson(a, len); - + sprintf(digest,"%x",u); lua_pushstring(L, digest); -- cgit v1.2.3