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 /ldump.c | |
parent | d827e96f33056bcc0daca0c04b3273604f9d5986 (diff) | |
download | lua-7ade1557627cf3f09c23c892ee227b7386f28414.tar.gz lua-7ade1557627cf3f09c23c892ee227b7386f28414.tar.bz2 lua-7ade1557627cf3f09c23c892ee227b7386f28414.zip |
Janitorial work on casts
Diffstat (limited to 'ldump.c')
-rw-r--r-- | ldump.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -108,7 +108,7 @@ static void dumpSize (DumpState *D, size_t sz) { | |||
108 | 108 | ||
109 | static void dumpInt (DumpState *D, int x) { | 109 | static void dumpInt (DumpState *D, int x) { |
110 | lua_assert(x >= 0); | 110 | lua_assert(x >= 0); |
111 | dumpVarint(D, cast(size_t, x)); | 111 | dumpVarint(D, cast_sizet(x)); |
112 | } | 112 | } |
113 | 113 | ||
114 | 114 | ||