diff options
author | Thomas White <taw@physics.org> | 2024-09-12 14:21:46 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2024-10-09 16:47:49 +0200 |
commit | 5299cf92935322d5b541c9e30aa92a97c8969777 (patch) | |
tree | cc3a66136e08adc42d9a5ba906ca5c4eaaca7abc /src | |
parent | 542b395c338cd85aa6d4cac04846b685f26ce980 (diff) |
ASAP::O: Add a missing const
Diffstat (limited to 'src')
-rw-r--r-- | src/im-asapo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/im-asapo.c b/src/im-asapo.c index 3cda86be..2f483a2d 100644 --- a/src/im-asapo.c +++ b/src/im-asapo.c @@ -74,7 +74,7 @@ static void show_asapo_error(const char *msg, const AsapoErrorHandle err) } -static int create_producer(struct im_asapo *a, struct im_asapo_params *params) +static int create_producer(struct im_asapo *a, const struct im_asapo_params *params) { char *source; AsapoSourceCredentialsHandle cred; |