Skip to content

Commit

Permalink
src: fix -Wmissing-field-initializers warning
Browse files Browse the repository at this point in the history
Fix the following (non-serious) compiler warning:

    ../src/node_http_parser.cc:558:1: warning: missing initializer for
    member 'http_parser_settings::on_chunk_header'
    [-Wmissing-field-initializers]
    };
    ^
    ../src/node_http_parser.cc:558:1: warning: missing initializer for
    member 'http_parser_settings::on_chunk_complete'
    [-Wmissing-field-initializers]

Introduced in commit b3a7da1 ("deps: update http_parser to 2.5.0").

PR-URL: #1606
Reviewed-By: Fedor Indutny <fedor@indutny.com>
  • Loading branch information
bnoordhuis committed May 4, 2015
1 parent f7620fb commit 279f611
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/node_http_parser.cc
Expand Up @@ -554,7 +554,9 @@ const struct http_parser_settings Parser::settings = {
Parser::on_header_value,
Parser::on_headers_complete,
Parser::on_body,
Parser::on_message_complete
Parser::on_message_complete,
nullptr, // on_chunk_header
nullptr // on_chunk_complete
};


Expand Down

0 comments on commit 279f611

Please sign in to comment.