MEDIUM: quic: Fix build.

Put the ) at the right place.

This should fix github issue #1190.
This commit is contained in:
Olivier Houchard 2021-03-19 20:09:22 +01:00
parent 7ab6d8bdf3
commit 26c51097d8
1 changed files with 1 additions and 1 deletions

View File

@ -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);