From a8d784888dd75abefa468e7b0a266be06c31248c Mon Sep 17 00:00:00 2001 From: Alan Wu Date: Mon, 28 Sep 2020 17:05:07 -0400 Subject: Fix mistake in ujit command line parsing --- ruby.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ruby.c') diff --git a/ruby.c b/ruby.c index ace1e99fcc..97498e4ef4 100644 --- a/ruby.c +++ b/ruby.c @@ -1441,7 +1441,7 @@ proc_options(long argc, char **argv, ruby_cmdline_options_t *opt, int envopt) #endif } else if (strncmp("ujit", s, 4) == 0) { - FEATURE_SET(opt->features, FEATURE_BIT(jit)); + FEATURE_SET(opt->features, FEATURE_BIT(ujit)); } else if (strcmp("yydebug", s) == 0) { if (envopt) goto noenvopt_long; -- cgit v1.2.3