Skip to content
Snippets Groups Projects
Commit c66ac4f8 authored by Makarand Dharmapurikar's avatar Makarand Dharmapurikar
Browse files

fixed a compiler warning

parent 0475549e
No related branches found
No related tags found
No related merge requests found
......@@ -71,7 +71,7 @@ static grpc_byte_buffer *CopyCharArrayToNewByteBuffer(const char *array,
}
char *array;
NSUInteger length;
MallocAndCopyByteBufferToCharArray(buffer, &length, &array);
MallocAndCopyByteBufferToCharArray(buffer, (size_t *)&length, &array);
if (!array) {
// TODO(jcanizales): grpc_byte_buffer is reference-counted, so we can
// prevent this memory problem by implementing a subclass of NSData
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment