diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2025-05-08 15:18:57 -0300 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2025-05-08 15:18:57 -0300 |
| commit | 7ade1557627cf3f09c23c892ee227b7386f28414 (patch) | |
| tree | ef534e61b85351c4edc5debb5d6f6a580e8fc5da /lobject.c | |
| parent | d827e96f33056bcc0daca0c04b3273604f9d5986 (diff) | |
| download | lua-7ade1557627cf3f09c23c892ee227b7386f28414.tar.gz lua-7ade1557627cf3f09c23c892ee227b7386f28414.tar.bz2 lua-7ade1557627cf3f09c23c892ee227b7386f28414.zip | |
Janitorial work on casts
Diffstat (limited to 'lobject.c')
| -rw-r--r-- | lobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -618,7 +618,7 @@ const char *luaO_pushvfstring (lua_State *L, const char *fmt, va_list argp) { | |||
| 618 | } | 618 | } |
| 619 | case 'I': { /* a 'lua_Integer' */ | 619 | case 'I': { /* a 'lua_Integer' */ |
| 620 | TValue num; | 620 | TValue num; |
| 621 | setivalue(&num, cast(lua_Integer, va_arg(argp, l_uacInt))); | 621 | setivalue(&num, cast_Integer(va_arg(argp, l_uacInt))); |
| 622 | addnum2buff(&buff, &num); | 622 | addnum2buff(&buff, &num); |
| 623 | break; | 623 | break; |
| 624 | } | 624 | } |
