mirror of
				https://github.com/alsa-project/alsa-lib.git
				synced 2025-11-03 09:01:52 -05:00 
			
		
		
		
	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:
		
							parent
							
								
									1720d30ad8
								
							
						
					
					
						commit
						0a2fd2d386
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -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;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue