diff options
author | Muxi Yan <muxi@users.noreply.github.com> | 2018-02-15 14:27:14 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-15 14:27:14 -0800 |
commit | ec42f328349efdbd88a267f74bde8e31dd6c7d68 (patch) | |
tree | 7eb4da5d202daf96c032e10f7fb1eb700cb60992 /src/core | |
parent | efc5ae8008d8778d98a98616df5e5367e44babb6 (diff) |
Fix typo
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/ext/transport/cronet/transport/cronet_transport.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/ext/transport/cronet/transport/cronet_transport.cc b/src/core/ext/transport/cronet/transport/cronet_transport.cc index 283417bcbe..9dce5c99ca 100644 --- a/src/core/ext/transport/cronet/transport/cronet_transport.cc +++ b/src/core/ext/transport/cronet/transport/cronet_transport.cc @@ -228,8 +228,8 @@ static size_t infer_length_after_decode(const grpc_slice& slice) { size_t tail_case = len % 4; if (tail_case == 1) { gpr_log(GPR_ERROR, - "Base64 decoding failed. Input has a length of %zu (withou " - "padding), which is invalid.\n", + "Base64 decoding failed. Input has a length of %zu (without" + " padding), which is invalid.\n", len); tail_case = 0; } |