From fbbbb9dfaddf493ded32c713ebc0d69b14f99469 Mon Sep 17 00:00:00 2001 From: akr Date: Sat, 27 Nov 2004 14:08:45 +0000 Subject: io.c (rb_io_fwrite): set path to NULL git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@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 fd52a8100..a24faf964 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); } -- cgit