util.hashes: Remove redundant semicolon

This commit is contained in:
Kim Alvefur 2019-04-19 12:41:38 +02:00
parent 0bcc500e3f
commit e70c9f1828

View file

@ -215,7 +215,7 @@ LUALIB_API int luaopen_util_hashes(lua_State *L) {
luaL_checkversion(L); luaL_checkversion(L);
#endif #endif
lua_newtable(L); lua_newtable(L);
luaL_setfuncs(L, Reg, 0);; luaL_setfuncs(L, Reg, 0);
lua_pushliteral(L, "-3.14"); lua_pushliteral(L, "-3.14");
lua_setfield(L, -2, "version"); lua_setfield(L, -2, "version");
return 1; return 1;