util.crand: Remove unneeded cast

This commit is contained in:
Kim Alvefur 2017-12-03 14:14:35 +01:00
parent bc2a2bbd4d
commit af554a9feb

View file

@ -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)