소스 검색

Remove unnecessary headers, fix typos.

Yuchen Zeng 9 년 전
부모
커밋
3812c7df8c
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      src/core/ext/transport/chttp2/transport/bin_decoder.c

+ 1 - 2
src/core/ext/transport/chttp2/transport/bin_decoder.c

@@ -34,7 +34,6 @@
 #include "src/core/ext/transport/chttp2/transport/bin_decoder.h"
 #include <grpc/support/alloc.h>
 #include <grpc/support/log.h>
-#include <stdio.h>
 #include "src/core/lib/support/string.h"
 
 static uint8_t decode_table[] = {
@@ -206,7 +205,7 @@ gpr_slice grpc_chttp2_base64_decode_with_length(gpr_slice input,
   if (output_length > input_length / 4 * 3 + tail_xtra[input_length % 4]) {
     gpr_log(GPR_ERROR,
             "Base64 decoding failed, output_length %zu is longer "
-            "than the max possible output length %zu./\n",
+            "than the max possible output length %zu.\n",
             output_length, input_length / 4 * 3 + tail_xtra[input_length % 4]);
     gpr_slice_unref(output);
     return gpr_empty_slice();