diff options
| author | Masaki Muranaka <[email protected]> | 2013-04-21 02:06:16 +0900 |
|---|---|---|
| committer | Masaki Muranaka <[email protected]> | 2013-04-21 02:06:16 +0900 |
| commit | ec4892c7ea0e4bafdee776c79eb9db4071060dc6 (patch) | |
| tree | f45ee41afb08ca6f542659b921e69859a7b81efd /src/vm.c | |
| parent | b41c5cb5c32c2a85b4bf242d4c42a2d193a5eb27 (diff) | |
| download | mruby-ec4892c7ea0e4bafdee776c79eb9db4071060dc6.tar.gz mruby-ec4892c7ea0e4bafdee776c79eb9db4071060dc6.zip | |
Use mrb_aspec instead of int32_t. As it will clarify what is doing.
Diffstat (limited to 'src/vm.c')
| -rw-r--r-- | src/vm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1117,7 +1117,7 @@ mrb_run(mrb_state *mrb, struct RProc *proc, mrb_value self) CASE(OP_ENTER) { /* Ax arg setup according to flags (24=5:5:1:5:5:1:1) */ /* number of optional arguments times OP_JMP should follow */ - int32_t ax = GETARG_Ax(i); + mrb_aspec ax = GETARG_Ax(i); int m1 = (ax>>18)&0x1f; int o = (ax>>13)&0x1f; int r = (ax>>12)&0x1; |
