summaryrefslogtreecommitdiff
path: root/ruby.c
diff options
context:
space:
mode:
Diffstat (limited to 'ruby.c')
-rw-r--r--ruby.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ruby.c b/ruby.c
index 10df06542e..4f6dcea00b 100644
--- a/ruby.c
+++ b/ruby.c
@@ -150,7 +150,7 @@ rubylib_mangle(s, l)
}
newl = strlen(newp);
if (newl == 0 || oldl == 0 || newl > STATIC_FILE_LENGTH) {
- Fatal("malformed RUBYLIB_PREFIX");
+ rb_fatal("malformed RUBYLIB_PREFIX");
}
strcpy(ret, newp);
s = ret;
@@ -172,7 +172,7 @@ rubylib_mangle(s, l)
return s;
}
if (l + newl - oldl > STATIC_FILE_LENGTH || newl > STATIC_FILE_LENGTH) {
- Fatal("malformed RUBYLIB_PREFIX");
+ rb_fatal("malformed RUBYLIB_PREFIX");
}
strcpy(ret + newl, s + oldl);
return ret;