diff options
| author | Carson McDonald <[email protected]> | 2013-07-03 06:52:19 -0400 |
|---|---|---|
| committer | Carson McDonald <[email protected]> | 2013-07-03 06:52:19 -0400 |
| commit | 2afae56c8eab117552db0b92adf13a0cb4352c20 (patch) | |
| tree | 97d6b62a9aae7a4cc94eecc7b3e425aee0023fc5 /src/codegen.c | |
| parent | 228bab85d6f7ab3b04a06be3c1256fd9cdbb2c72 (diff) | |
| download | mruby-2afae56c8eab117552db0b92adf13a0cb4352c20.tar.gz mruby-2afae56c8eab117552db0b92adf13a0cb4352c20.zip | |
Fix signed/unsigned warning, make pcapa a size_t
Diffstat (limited to 'src/codegen.c')
| -rw-r--r-- | src/codegen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codegen.c b/src/codegen.c index 091561b45..d7d4f19b2 100644 --- a/src/codegen.c +++ b/src/codegen.c @@ -59,7 +59,7 @@ typedef struct scope { int icapa; mrb_irep *irep; - int pcapa; + size_t pcapa; int scapa; int nlocals; |
