mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.crand: Remove unneeded cast
This commit is contained in:
parent
bc2a2bbd4d
commit
af554a9feb
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ int getrandom(void *buf, size_t buflen, unsigned int flags) {
|
|||
#endif
|
||||
|
||||
int Lrandom(lua_State *L) {
|
||||
const size_t len = (size_t)luaL_checkinteger(L, 1);
|
||||
const size_t len = luaL_checkinteger(L, 1);
|
||||
void *buf = lua_newuserdata(L, len);
|
||||
|
||||
#if defined(WITH_GETRANDOM)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue