From: Takashi Iwai Date: Fri, 10 Aug 2012 12:19:17 +0000 (+0200) Subject: ucm: Add const to execute_cset() argument X-Git-Tag: v1.0.26~5 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=7c5c3ff3dea22c048a872e8c2f34b830159cbf36;p=alsa-lib.git ucm: Add const to execute_cset() argument Now with the previous rewrite of execute_cset(), the cset string is no longer modified, thus we can pass const safely. Signed-off-by: Takashi Iwai --- diff --git a/src/ucm/main.c b/src/ucm/main.c index bd5c3481..0d7d8414 100644 --- a/src/ucm/main.c +++ b/src/ucm/main.c @@ -163,7 +163,7 @@ extern int __snd_ctl_ascii_elem_id_parse(snd_ctl_elem_id_t *dst, const char *str, const char **ret_ptr); -static int execute_cset(snd_ctl_t *ctl, char *cset) +static int execute_cset(snd_ctl_t *ctl, const char *cset) { const char *pos; int err;