proto_clnt: fix function prototype

The function prototype for osmo_e1dp_client_destroy has a different
parameter name in its signature in proto_clnt.h than in prto_clnt.c,
let's rename it so that both are coherent. (srv -> clnt)

Change-Id: I8bd4fbdf2bda332870da1b915a7898c396a85b0f
This commit is contained in:
Philipp Maier 2023-04-17 12:30:21 +02:00
parent d20d82442a
commit 28c437675f
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@
struct osmo_e1dp_client;
struct osmo_e1dp_client *osmo_e1dp_client_create(void *ctx, const char *path);
void osmo_e1dp_client_destroy(struct osmo_e1dp_client *srv);
void osmo_e1dp_client_destroy(struct osmo_e1dp_client *clnt);
int osmo_e1dp_client_intf_query(struct osmo_e1dp_client *clnt,
struct osmo_e1dp_intf_info **ii, int *n,