diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-05-06 16:05:10 -0300 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-05-06 16:05:10 -0300 |
| commit | 71144e3ff0cb81bd9b8bb56d94dc76074c638c64 (patch) | |
| tree | 8098675276d0640684898d4302ea98ae91e2c430 /lmathlib.c | |
| parent | 0dbf0c5953a3d72deebc7e41840a0e73b46de8bc (diff) | |
| download | lua-71144e3ff0cb81bd9b8bb56d94dc76074c638c64.tar.gz lua-71144e3ff0cb81bd9b8bb56d94dc76074c638c64.tar.bz2 lua-71144e3ff0cb81bd9b8bb56d94dc76074c638c64.zip | |
errors `return' int, to avoid warnings
+ home-made `sprintf' (first version)
Diffstat (limited to 'lmathlib.c')
| -rw-r--r-- | lmathlib.c | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** $Id: lmathlib.c,v 1.43 2002/04/04 20:20:49 roberto Exp roberto $ | 2 | ** $Id: lmathlib.c,v 1.44 2002/05/02 17:12:27 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 | */ |
| @@ -187,7 +187,7 @@ static int math_random (lua_State *L) { | |||
| 187 | lua_pushnumber(L, (int)(r*(u-l+1))+l); /* integer between `l' and `u' */ | 187 | lua_pushnumber(L, (int)(r*(u-l+1))+l); /* integer between `l' and `u' */ |
| 188 | break; | 188 | break; |
| 189 | } | 189 | } |
| 190 | default: luaL_verror(L, "wrong number of arguments"); | 190 | default: return luaL_verror(L, "wrong number of arguments"); |
| 191 | } | 191 | } |
| 192 | return 1; | 192 | return 1; |
| 193 | } | 193 | } |
