MEDIUM: quic: Fix build.
Put the ) at the right place. This should fix github issue #1190.
This commit is contained in:
parent
7ab6d8bdf3
commit
26c51097d8
|
@ -57,7 +57,7 @@ int quic_session_accept(struct connection *cli_conn)
|
|||
goto out_free_conn;
|
||||
}
|
||||
|
||||
if (conn_xprt_start(cli_conn < 0))
|
||||
if (conn_xprt_start(cli_conn) < 0)
|
||||
goto out_free_conn;
|
||||
|
||||
sess = session_new(p, l, &cli_conn->obj_type);
|
||||
|
|
Loading…
Reference in New Issue