mirror of
				https://github.com/alsa-project/alsa-tools.git
				synced 2025-11-03 09:01:51 -05:00 
			
		
		
		
	Fixed warning
This commit is contained in:
		
							parent
							
								
									361222a795
								
							
						
					
					
						commit
						9507202556
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
					@ -14,7 +14,7 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const char default_dir[] = "/sndscape";
 | 
					const char default_dir[] = "/sndscape";
 | 
				
			||||||
const char scope[] = "scope.cod";
 | 
					const char scope[] = "scope.cod";
 | 
				
			||||||
char _microcode[65536];
 | 
					unsigned char _microcode[SSCAPE_MICROCODE_SIZE];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static void
 | 
					static void
 | 
				
			||||||
show_usage(void)
 | 
					show_usage(void)
 | 
				
			||||||
| 
						 | 
					@ -205,7 +205,7 @@ main(int argc, char *argv[])
 | 
				
			||||||
    struct sscape_bootblock  boot;
 | 
					    struct sscape_bootblock  boot;
 | 
				
			||||||
    struct sscape_microcode  microcode;
 | 
					    struct sscape_microcode  microcode;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    microcode.code = &_microcode;
 | 
					    microcode.code = _microcode;
 | 
				
			||||||
    if ((len = get_directory(directory, filename, sizeof(filename))) == 0)
 | 
					    if ((len = get_directory(directory, filename, sizeof(filename))) == 0)
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
      fprintf(stderr, "Invalid directory - pathname too long\n");
 | 
					      fprintf(stderr, "Invalid directory - pathname too long\n");
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue