summaryrefslogtreecommitdiff
path: root/tool/transform_mjit_header.rb
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-02-09 13:14:17 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-02-09 13:14:17 +0000
commit1a45a3a797cd7c1996098cd210d9926e0cd80e4d (patch)
tree0d6156136da66a60fbcdeeff51c74a1714ad7a97 /tool/transform_mjit_header.rb
parentf6ea97260d4e4ecaeda4f40a11dcca111f33e85a (diff)
transform_mjit_header.rb: fix typo in r62326
Today's AIX CI failed due to this... :innocent: git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62332 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool/transform_mjit_header.rb')
-rw-r--r--tool/transform_mjit_header.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/transform_mjit_header.rb b/tool/transform_mjit_header.rb
index 0a374f787f..c291004e7e 100644
--- a/tool/transform_mjit_header.rb
+++ b/tool/transform_mjit_header.rb
@@ -191,7 +191,7 @@ macro, code = MJITHeader.separate_macro_and_code(code) # note: this does not wor
code_to_check = "#{code}#{macro}" # macro should not affect code again
if MJITHeader.conflicting_types?(code_to_check, cc, cflags)
- cflags = "#{clags} -std=c99" # For AIX gcc
+ cflags = "#{cflags} -std=c99" # For AIX gcc
end
# Check initial file correctness in the manner of final output.