MINOR: mux-quic: fix uninitialized return on qc_send

This should fix the github issue #1562.
This commit is contained in:
Amaury Denoyelle 2022-02-21 18:45:22 +01:00
parent ff191de1ca
commit c0b66ca73c

View File

@ -314,7 +314,7 @@ static int qc_send(struct qcc *qcc)
{
struct eb64_node *node;
int xprt_wake = 0;
int ret;
int ret = 0;
fprintf(stderr, "%s\n", __func__);