rb: Make MemoryTransport's inspect_buffer method work in Ruby 1.9

Patch: Rajesh Malepati

git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@983680 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Bryan Duxbury 2010-08-09 15:25:34 +00:00
parent ea67a78377
commit 7e9ac7bf59

View File

@ -88,9 +88,9 @@ module Thrift
out << ">"
end
out << @buf[idx].to_s(16)
out << @buf[idx].ord.to_s(16)
end
out.join(" ")
end
end
end
end