Commit b2bb6f1d authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

Fix android NDK build error

parent d56ecd74
......@@ -87,7 +87,8 @@ void nghttp2_stream_shutdown(nghttp2_stream *stream, nghttp2_shut_flag flag) {
}
static int stream_push_item(nghttp2_stream *stream, nghttp2_session *session) {
int rv;
/* This is required for Android NDK r10d */
int rv = 0;
nghttp2_outbound_item *item;
assert(stream->item);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment