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
commit3c5b1c71107b43f45dcc640a5293319bb22ba527 (patch)
tree961dc452c07d4d3b41547b8c00618a267adfa79c /io.c
parent2964c16f385ba93124db1e400b5e38890e2b99c3 (diff)
io.c (rb_io_fwrite): set path to NULL
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@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 fd52a8100f..a24faf964e 100644
--- a/io.c
+++ b/io.c
@@ -456,7 +456,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);
}