summaryrefslogtreecommitdiffstats
path: root/file.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-09-06 08:59:41 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-09-06 08:59:41 +0000
commit4ff61a2d2379be4d444e98f1f6af6409b47d148e (patch)
tree2f7eca34d979d1873f34daba9cbdac950777184a /file.c
parent6b11896b924eb38b718ef0c5c5d02c75b1bb4cf5 (diff)
downloadruby-4ff61a2d2379be4d444e98f1f6af6409b47d148e.tar.gz
ruby-4ff61a2d2379be4d444e98f1f6af6409b47d148e.tar.xz
ruby-4ff61a2d2379be4d444e98f1f6af6409b47d148e.zip
* gc.c (ruby_xmalloc): remove MALLOC_LIMIT to avoid frequent
garabage collection. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2810 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'file.c')
-rw-r--r--file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/file.c b/file.c
index a32d962df..8a91e20ad 100644
--- a/file.c
+++ b/file.c
@@ -2372,7 +2372,7 @@ path_check_1(path)
&& (!p || !(st.st_mode & S_ISVTX))
#endif
) {
- rb_warn("Insecure world writable dir %s , mode 0%o", p0, st.st_mode);
+ rb_warn("Insecure world writable dir %s, mode 0%o", p0, st.st_mode);
if (p) *p = '/';
return 0;
}