Fix up function signatures

pull/357/head
Craig Tiller 10 years ago
parent 4741adeb8d
commit ffa4a59f23
  1. 2
      src/core/surface/channel.c
  2. 2
      src/core/surface/server.c

@ -74,7 +74,7 @@ grpc_channel *grpc_channel_create_from_filters(
static void do_nothing(void *ignored, grpc_op_error error) {}
grpc_call *grpc_channel_create_call_old(grpc_channel *channel,
grpc_call *grpc_channel_create_call(grpc_channel *channel,
const char *method, const char *host,
gpr_timespec absolute_deadline) {
grpc_call *call;

@ -710,9 +710,9 @@ static void begin_request(grpc_server *server, grpc_completion_queue *cq,
}
grpc_call_error grpc_server_request_call(grpc_server *server,
grpc_completion_queue *cq,
grpc_call_details *details,
grpc_metadata_array *initial_metadata,
grpc_completion_queue *cq,
void *tag) {
grpc_cq_begin_op(cq, NULL, GRPC_IOREQ);
return queue_call_request(server, cq, initial_metadata, begin_request, tag);

Loading…
Cancel
Save