diff options
author | Mike Pall <mike> | 2014-12-20 00:59:16 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2014-12-20 01:48:00 +0100 |
commit | 5cb6e2eaaf860045daa30208b21ae6aa88a0503c (patch) | |
tree | b0b4c4edfc1a9a0c3f51efbd3c36580447eaa509 /src/lj_bcread.c | |
parent | 6e9145a882ea70fe438d59959ac4e65481fe5e85 (diff) | |
download | luajit-5cb6e2eaaf860045daa30208b21ae6aa88a0503c.tar.gz luajit-5cb6e2eaaf860045daa30208b21ae6aa88a0503c.tar.bz2 luajit-5cb6e2eaaf860045daa30208b21ae6aa88a0503c.zip |
Cleanup of TValue setters. No functional changes.
Diffstat (limited to 'src/lj_bcread.c')
-rw-r--r-- | src/lj_bcread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_bcread.c b/src/lj_bcread.c index 519164ca..cea20e90 100644 --- a/src/lj_bcread.c +++ b/src/lj_bcread.c | |||
@@ -192,7 +192,7 @@ static void bcread_ktabk(LexState *ls, TValue *o) | |||
192 | o->u32.hi = bcread_uleb128(ls); | 192 | o->u32.hi = bcread_uleb128(ls); |
193 | } else { | 193 | } else { |
194 | lua_assert(tp <= BCDUMP_KTAB_TRUE); | 194 | lua_assert(tp <= BCDUMP_KTAB_TRUE); |
195 | setitype(o, ~tp); | 195 | setpriV(o, ~tp); |
196 | } | 196 | } |
197 | } | 197 | } |
198 | 198 | ||