From 8a7965c6e5b085ce9a4981a47b8841ef29edf7b6 Mon Sep 17 00:00:00 2001 From: Charles Lowell Date: Fri, 18 Jun 2010 14:44:44 +0300 Subject: [PATCH] remove html from warning message --- ext/v8/rr.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/v8/rr.cpp b/ext/v8/rr.cpp index e204e68..6b1c11f 100644 --- a/ext/v8/rr.cpp +++ b/ext/v8/rr.cpp @@ -143,10 +143,10 @@ Handle rr_rb2v8(VALUE value) { // case T_SCOPE: (not in 1.9) case T_NODE: default: - rb_warn("unknown conversion to V8 for: %s
", RSTRING_PTR(rb_inspect(value))); + rb_warn("unknown conversion to V8 for: %s", RSTRING_PTR(rb_inspect(value))); return String::New("Undefined Conversion"); } - + return Undefined(); } // VALUE rr_v82rb(v8::ScriptData *data) {