ucm: rename sysset to sysw

Fixes: 1c6fb202 ("ucm: implement sysset sequence command")
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
Jaroslav Kysela 2021-03-23 11:40:30 +01:00
parent 7bf1dd543b
commit 0afa61e8f0
4 changed files with 11 additions and 11 deletions

View file

@ -772,11 +772,11 @@ static int parse_sequence(snd_use_case_mgr_t *uc_mgr,
continue;
}
if (strcmp(cmd, "sysset") == 0) {
if (strcmp(cmd, "sysw") == 0) {
curr->type = SEQUENCE_ELEMENT_TYPE_SYSSET;
err = parse_string_substitute3(uc_mgr, n, &curr->data.sysset);
err = parse_string_substitute3(uc_mgr, n, &curr->data.sysw);
if (err < 0) {
uc_error("error: sysset requires a string!");
uc_error("error: sysw requires a string!");
return err;
}
continue;