summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-11-18 08:22:46 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-11-18 08:22:46 +0000
commitbdf5eb3b91d6875cb6ba8a3c61834ad482b09d1c (patch)
tree6bd5ec5c47fbafa2615534b34501c7dd53938a59
parent0515904414418616dc2def8769964325eae7402c (diff)
mjit_worker.c: fix typo [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65783 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--mjit_worker.c2
1 files changed, 1 insertions, 1 deletions
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));