Fix up function signatures
diff --git a/src/core/surface/channel.c b/src/core/surface/channel.c
index c33ea92..4839a46 100644
--- a/src/core/surface/channel.c
+++ b/src/core/surface/channel.c
@@ -74,7 +74,7 @@
 
 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;
diff --git a/src/core/surface/server.c b/src/core/surface/server.c
index 05cb218..769b68c 100644
--- a/src/core/surface/server.c
+++ b/src/core/surface/server.c
@@ -710,9 +710,9 @@
 }
 
 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);