mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +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
|
#endif
|
||||||
|
|
||||||
int Lrandom(lua_State *L) {
|
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);
|
void *buf = lua_newuserdata(L, len);
|
||||||
|
|
||||||
#if defined(WITH_GETRANDOM)
|
#if defined(WITH_GETRANDOM)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue