summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorCarson McDonald <[email protected]>2013-07-03 06:52:19 -0400
committerCarson McDonald <[email protected]>2013-07-03 06:52:19 -0400
commit2afae56c8eab117552db0b92adf13a0cb4352c20 (patch)
tree97d6b62a9aae7a4cc94eecc7b3e425aee0023fc5
parent228bab85d6f7ab3b04a06be3c1256fd9cdbb2c72 (diff)
downloadmruby-2afae56c8eab117552db0b92adf13a0cb4352c20.tar.gz
mruby-2afae56c8eab117552db0b92adf13a0cb4352c20.zip
Fix signed/unsigned warning, make pcapa a size_t
-rw-r--r--src/codegen.c2
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;