Skip to content

Commit

Permalink
Shutting off warnings about control paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasnoble committed Apr 2, 2015
1 parent c743904 commit 7f13eb2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/core/httpcli/parser.c
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,8 @@ static int addbyte(grpc_httpcli_parser *parser, gpr_uint8 byte) {
}
gpr_log(GPR_ERROR, "should never reach here");
abort();

return 0;
}

void grpc_httpcli_parser_init(grpc_httpcli_parser *parser) {
Expand Down
2 changes: 2 additions & 0 deletions src/core/transport/chttp2_transport.c
Original file line number Diff line number Diff line change
Expand Up @@ -1710,6 +1710,8 @@ static int process_read(transport *t, gpr_slice slice) {

gpr_log(GPR_ERROR, "should never reach here");
abort();

return 0;
}

/* tcp read callback */
Expand Down

0 comments on commit 7f13eb2

Please sign in to comment.