aboutsummaryrefslogtreecommitdiff
path: root/lmathlib.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-04-01 11:39:55 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-04-01 11:39:55 -0300
commit607be77ec8d2b6062077772a55831a5aca16fb2d (patch)
tree160fdbdaab4cf577e94e2f1f78a4d717a26bfcd1 /lmathlib.c
parent0d745ed04c93e907e9f2bd8c21ce1ca27bba9b6a (diff)
downloadlua-607be77ec8d2b6062077772a55831a5aca16fb2d.tar.gz
lua-607be77ec8d2b6062077772a55831a5aca16fb2d.tar.bz2
lua-607be77ec8d2b6062077772a55831a5aca16fb2d.zip
some details to avoid warnings
Diffstat (limited to 'lmathlib.c')
-rw-r--r--lmathlib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lmathlib.c b/lmathlib.c
index bede732e..cf8f2a6f 100644
--- a/lmathlib.c
+++ b/lmathlib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lmathlib.c,v 1.92 2013/07/22 16:05:53 roberto Exp roberto $ 2** $Id: lmathlib.c,v 1.93 2014/03/31 19:00:52 roberto Exp roberto $
3** Standard mathematical library 3** Standard mathematical library
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -250,7 +250,7 @@ static int math_random (lua_State *L) {
250 250
251 251
252static int math_randomseed (lua_State *L) { 252static int math_randomseed (lua_State *L) {
253 srand(luaL_checkunsigned(L, 1)); 253 srand((unsigned int)luaL_checkunsigned(L, 1));
254 (void)rand(); /* discard first value to avoid undesirable correlations */ 254 (void)rand(); /* discard first value to avoid undesirable correlations */
255 return 0; 255 return 0;
256} 256}