Skip to content

Commit

Permalink
fix(build): Fix missing argument in generate_connect (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel5151 authored and LucioFranco committed Oct 23, 2019
1 parent 77fc740 commit eea3c0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tonic-build/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ fn generate_connect(service_ident: &syn::Ident) -> TokenStream {
}

#[cfg(not(feature = "transport"))]
fn generate_connect() -> TokenStream {
fn generate_connect(_service_ident: &syn::Ident) -> TokenStream {
TokenStream::new()
}

Expand Down

0 comments on commit eea3c0f

Please sign in to comment.