Commit 8ca2f6aa authored by Alexis La Goutte's avatar Alexis La Goutte

Fix build when use Clang

libevent-client.c:355:43: error: missing field 'recv_callback' initializer [-Werror,-Wmissing-field-initializers]
parent abe74f86
......@@ -352,7 +352,7 @@ static SSL* create_ssl(SSL_CTX *ssl_ctx)
static void initialize_nghttp2_session(http2_session_data *session_data)
{
nghttp2_session_callbacks callbacks = {0};
nghttp2_session_callbacks callbacks;
callbacks.send_callback = send_callback;
callbacks.before_frame_send_callback = before_frame_send_callback;
......
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