pespin has submitted this change. ( https://gerrit.osmocom.org/c/libosmo-netif/+/29775 )
Change subject: cosmetic: stream: Fix parameter name ......................................................................
cosmetic: stream: Fix parameter name
The param is already "cli" in the .c file.
Change-Id: I7e1e9902a39655e57e28d38a222bca850dd7de0e --- M include/osmocom/netif/stream.h 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: Jenkins Builder: Verified laforge: Looks good to me, approved
diff --git a/include/osmocom/netif/stream.h b/include/osmocom/netif/stream.h index 489fc5d..793e578 100644 --- a/include/osmocom/netif/stream.h +++ b/include/osmocom/netif/stream.h @@ -89,6 +89,6 @@ void osmo_stream_cli_close(struct osmo_stream_cli *cli);
void osmo_stream_cli_send(struct osmo_stream_cli *cli, struct msgb *msg); -int osmo_stream_cli_recv(struct osmo_stream_cli *conn, struct msgb *msg); +int osmo_stream_cli_recv(struct osmo_stream_cli *cli, struct msgb *msg);
/*! @} */