aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/node
diff options
context:
space:
mode:
authorGravatar David Garcia Quintas <dgq@google.com>2015-06-08 16:31:19 -0700
committerGravatar David Garcia Quintas <dgq@google.com>2015-06-08 20:06:17 -0700
commit59f905d79a109644a0d1f3ec73f34cbae65448fc (patch)
tree9ca4e84a195b4a8d8332d24362bc6828c74d4dea /src/node
parent237443faa49dce1ba4df2d74000acef2802b3bdd (diff)
Changes to byte_buffer based on comments.
Diffstat (limited to 'src/node')
-rw-r--r--src/node/ext/byte_buffer.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node/ext/byte_buffer.cc b/src/node/ext/byte_buffer.cc
index 2c84099069..7eff11c2b3 100644
--- a/src/node/ext/byte_buffer.cc
+++ b/src/node/ext/byte_buffer.cc
@@ -57,7 +57,7 @@ grpc_byte_buffer *BufferToByteBuffer(Handle<Value> buffer) {
char *data = ::node::Buffer::Data(buffer);
gpr_slice slice = gpr_slice_malloc(length);
memcpy(GPR_SLICE_START_PTR(slice), data, length);
- grpc_byte_buffer *byte_buffer(grpc_byte_buffer_create(&slice, 1));
+ grpc_byte_buffer *byte_buffer(grpc_raw_byte_buffer_create(&slice, 1));
gpr_slice_unref(slice);
return byte_buffer;
}