Skip to content
Snippets Groups Projects
Commit 7f42af5a authored by Konstantin Osipov's avatar Konstantin Osipov
Browse files

Fix a gcc compile failure (buildbot, fiber-specialization patch).

parent 354fa60a
No related branches found
No related tags found
No related merge requests found
......@@ -182,7 +182,7 @@ struct iproto_request_queue
{
int begin, end;
struct iproto_request queue[IPROTO_REQUEST_QUEUE_SIZE];
} ir_queue = { 0, 0 };
} ir_queue;
static struct ev_async iproto_postio;
......@@ -604,7 +604,6 @@ iproto_handler(va_list arg __attribute__((unused)))
{
struct iproto_header *header;
struct iproto_session *session;
struct iproto_session *prev_session = NULL;
struct iobuf *iobuf;
struct port_iproto port;
restart:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment