From: Stephen Warren Date: Thu, 2 Jun 2011 22:44:38 +0000 (-0600) Subject: UCM: Fix typo in error message X-Git-Tag: v1.0.25~30 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=0a2fd2d38677c48443a1c9b1aba8c432c3b6bd96;p=alsa-lib.git 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 Signed-off-by: Jaroslav Kysela --- diff --git a/src/ucm/parser.c b/src/ucm/parser.c index 38fdba0b..f7de9bd4 100644 --- a/src/ucm/parser.c +++ b/src/ucm/parser.c @@ -62,7 +62,7 @@ int parse_string(snd_config_t *n, char **res) int parse_is_name_safe(char *name) { if (strchr(name, '.')) { - uc_error("char '.' now allowed in '%s'", name); + uc_error("char '.' not allowed in '%s'", name); return 0; } return 1;