From 4c749cef835d672f1f2e3bcdcebd743006b564d1 Mon Sep 17 00:00:00 2001 From: Madelyn Olson Date: Tue, 15 Oct 2024 14:56:50 -0700 Subject: [PATCH] Update deps/lua/src/lstring.c MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Viktor Söderqvist Signed-off-by: Madelyn Olson --- deps/lua/src/lstring.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/lua/src/lstring.c b/deps/lua/src/lstring.c index de67030b99..043a7867c0 100644 --- a/deps/lua/src/lstring.c +++ b/deps/lua/src/lstring.c @@ -120,7 +120,7 @@ uint32_t murmur32(const uint8_t* key, size_t len, uint32_t seed) { TString *luaS_newlstr (lua_State *L, const char *str, size_t l) { GCObject *o; - unsigned int h = murmur32((uint8_t *)str, l, (uint32_t)l); /* seed */ + unsigned int h = murmur32((uint8_t *)str, l, (uint32_t)l); for (o = G(L)->strt.hash[lmod(h, G(L)->strt.size)]; o != NULL; o = o->gch.next) {