[build] fix unused param error (#35443)

Closes #35443

COPYBARA_INTEGRATE_REVIEW=https://github.com/grpc/grpc/pull/35443 from ctiller:peace 85749d673b
PiperOrigin-RevId: 595510844
This commit is contained in:
Craig Tiller 2024-01-03 14:54:17 -08:00 committed by Copybara-Service
parent 9e702debfb
commit 5851f05f8a
1 changed files with 1 additions and 2 deletions

View File

@ -4072,8 +4072,7 @@ RefCountedPtr<CallSpineInterface> MakeServerCall(Server* server,
return RefCountedPtr<ServerCallSpine>(call);
}
#else
RefCountedPtr<CallSpineInterface> MakeServerCall(Server* server,
Channel* channel) {
RefCountedPtr<CallSpineInterface> MakeServerCall(Server*, Channel*) {
Crash("not implemented");
}
#endif