diff options
author | David Garcia Quintas <dgq@google.com> | 2016-06-07 17:30:20 -0700 |
---|---|---|
committer | David Garcia Quintas <dgq@google.com> | 2016-06-07 17:30:20 -0700 |
commit | 8ba42bec907e3e9cebd2621127caac22aed30a0d (patch) | |
tree | cb2fb573280ba9d38f0c8dc5a704d08e088c180d /src/objective-c/GRPCClient/private | |
parent | 30fb536053c549aa2a8507a2a0bcd238bda607dd (diff) |
s/maybe_compression_level.compression_level/maybe_compression_level.level
Diffstat (limited to 'src/objective-c/GRPCClient/private')
-rw-r--r-- | src/objective-c/GRPCClient/private/GRPCWrappedCall.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/objective-c/GRPCClient/private/GRPCWrappedCall.m b/src/objective-c/GRPCClient/private/GRPCWrappedCall.m index 27723afb0e..a3fa5938cd 100644 --- a/src/objective-c/GRPCClient/private/GRPCWrappedCall.m +++ b/src/objective-c/GRPCClient/private/GRPCWrappedCall.m @@ -73,7 +73,7 @@ _op.data.send_initial_metadata.count = metadata.count; _op.data.send_initial_metadata.metadata = metadata.grpc_metadataArray; _op.data.send_initial_metadata.maybe_compression_level.is_set = false; - _op.data.send_initial_metadata.maybe_compression_level.compression_level = 0; + _op.data.send_initial_metadata.maybe_compression_level.level = 0; _handler = handler; } return self; |