summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-27 14:08:45 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-27 14:08:45 +0000
commit39eac7ded8512e4f9c78f1bdab2b143f8190009f (patch)
tree5f3e6aba332cc56aff7a28a3f1d1e02d5b1252fb /io.c
parent5eec9fe63c0cd627bfa8b1ffbcfeec8b4bb57490 (diff)
io.c (rb_io_fwrite): set path to NULL
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7395 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r--io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io.c b/io.c
index 13d300a04b..9c4ef1b987 100644
--- a/io.c
+++ b/io.c
@@ -466,7 +466,7 @@ rb_io_fwrite(ptr, len, f)
of.f = f;
of.f2 = NULL;
of.mode = FMODE_WRITABLE;
- of.path = "(rb_io_fwrite)";
+ of.path = NULL;
return io_fwrite(ptr, len, &of);
}