summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2013-09-25 02:39:59 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2013-09-25 02:39:59 +0900
commit9194047791bede575a184620ed9a96edd26b24ac (patch)
tree3ab0e9b8bebf551af889676e8b2d7e1da5258837 /include
parentfe1f121640fbe94ad2e7fabf0b9cb8fdd4ae0e02 (diff)
downloadmruby-9194047791bede575a184620ed9a96edd26b24ac.tar.gz
mruby-9194047791bede575a184620ed9a96edd26b24ac.zip
change type of mrb->c->status from uint8_t to enum mrb_fiber_state; #1511
Diffstat (limited to 'include')
-rw-r--r--include/mruby.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mruby.h b/include/mruby.h
index 0541bc709..b3582541a 100644
--- a/include/mruby.h
+++ b/include/mruby.h
@@ -84,7 +84,7 @@ struct mrb_context {
struct RProc **ensure; /* ensure handler stack */
int esize;
- uint8_t status;
+ enum mrb_fiber_state status;
struct RFiber *fib;
};