aboutsummaryrefslogtreecommitdiffstats
path: root/eval_error.c
diff options
context:
space:
mode:
authornormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-19 20:56:10 +0000
committernormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-19 20:56:10 +0000
commit62c3610583fbdb2105714117f7acac89e9ab1da4 (patch)
tree2da22442d3bc994c04ecc55c95cc1db00f3aea10 /eval_error.c
parent98d0ccc86afb6b8e726966f4ed17cfb4e645d307 (diff)
downloadruby-62c3610583fbdb2105714117f7acac89e9ab1da4.tar.gz
rb_execution_context_t: pack bits, 256 -> 252 bytes (on 32-bit)
Maybe execution contexts will become more common. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65183 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval_error.c')
-rw-r--r--eval_error.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval_error.c b/eval_error.c
index 237c96d84f..8f98fcc319 100644
--- a/eval_error.c
+++ b/eval_error.c
@@ -268,7 +268,7 @@ VALUE rb_get_message(VALUE exc);
void
rb_ec_error_print(rb_execution_context_t * volatile ec, volatile VALUE errinfo)
{
- volatile int raised_flag = ec->raised_flag;
+ volatile uint8_t raised_flag = ec->raised_flag;
volatile VALUE errat = Qundef;
volatile VALUE emesg = Qundef;