Software /
code /
prosody
Comparison
util-src/hashes.c @ 9957:c8cfd2a5845c
util.hashes: Remove redundant semicolon
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 19 Apr 2019 12:41:38 +0200 |
parent | 7889:b8d694646597 |
child | 9963:90a3cd25f2ae |
comparison
equal
deleted
inserted
replaced
9956:737483a4b2e6 | 9957:c8cfd2a5845c |
---|---|
213 LUALIB_API int luaopen_util_hashes(lua_State *L) { | 213 LUALIB_API int luaopen_util_hashes(lua_State *L) { |
214 #if (LUA_VERSION_NUM > 501) | 214 #if (LUA_VERSION_NUM > 501) |
215 luaL_checkversion(L); | 215 luaL_checkversion(L); |
216 #endif | 216 #endif |
217 lua_newtable(L); | 217 lua_newtable(L); |
218 luaL_setfuncs(L, Reg, 0);; | 218 luaL_setfuncs(L, Reg, 0); |
219 lua_pushliteral(L, "-3.14"); | 219 lua_pushliteral(L, "-3.14"); |
220 lua_setfield(L, -2, "version"); | 220 lua_setfield(L, -2, "version"); |
221 return 1; | 221 return 1; |
222 } | 222 } |