From bdf5eb3b91d6875cb6ba8a3c61834ad482b09d1c Mon Sep 17 00:00:00 2001 From: k0kubun Date: Sun, 18 Nov 2018 08:22:46 +0000 Subject: [PATCH] mjit_worker.c: fix typo [ci skip] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65783 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- mjit_worker.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mjit_worker.c b/mjit_worker.c index 19409ee00e..b0dddc9f22 100644 --- a/mjit_worker.c +++ b/mjit_worker.c @@ -1083,7 +1083,7 @@ convert_unit_to_func(struct rb_mjit_unit *unit, struct rb_call_cache *cc_entries o_files[0] = o_file; success = link_o_to_so(o_files, so_file); - /* Alwasy set o_file for compaction. The value is also used for lazy deletion. */ + /* Always set o_file for compaction. The value is also used for lazy deletion. */ unit->o_file = strdup(o_file); if (unit->o_file == NULL) { mjit_warning("failed to allocate memory to remember '%s' (%s), removing it...", o_file, strerror(errno));