From 39eac7ded8512e4f9c78f1bdab2b143f8190009f Mon Sep 17 00:00:00 2001 From: akr Date: Sat, 27 Nov 2004 14:08:45 +0000 Subject: [PATCH] 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 --- io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }