UCM: Fix typo in error message

parse_name_is_safe disallows dots in the name, so not is the correct
word to use

Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
Stephen Warren 2011-06-02 16:44:38 -06:00 committed by Jaroslav Kysela
parent 1720d30ad8
commit 0a2fd2d386

View file

@ -62,7 +62,7 @@ int parse_string(snd_config_t *n, char **res)
int parse_is_name_safe(char *name) int parse_is_name_safe(char *name)
{ {
if (strchr(name, '.')) { if (strchr(name, '.')) {
uc_error("char '.' now allowed in '%s'", name); uc_error("char '.' not allowed in '%s'", name);
return 0; return 0;
} }
return 1; return 1;