Remove some warnings and fix windows build.
Initialize some variables to make GCC happy and switch from using index to strchr. index is not available on Windows. Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6653 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
		
							parent
							
								
									0858532ea9
								
							
						
					
					
						commit
						54042bcf24
					
				| 
						 | 
				
			
			@ -841,7 +841,7 @@ int acpi_table_add(const char *t)
 | 
			
		|||
    f = buf;
 | 
			
		||||
    while (buf[0]) {
 | 
			
		||||
        struct stat s;
 | 
			
		||||
        char *n = index(f, ':');
 | 
			
		||||
        char *n = strchr(f, ':');
 | 
			
		||||
        if (n)
 | 
			
		||||
            *n = '\0';
 | 
			
		||||
        if(stat(f, &s) < 0) {
 | 
			
		||||
| 
						 | 
				
			
			@ -873,7 +873,7 @@ int acpi_table_add(const char *t)
 | 
			
		|||
    while (buf[0]) {
 | 
			
		||||
        struct stat s;
 | 
			
		||||
        int fd;
 | 
			
		||||
        char *n = index(f, ':');
 | 
			
		||||
        char *n = strchr(f, ':');
 | 
			
		||||
        if (n)
 | 
			
		||||
            *n = '\0';
 | 
			
		||||
        fd = open(f, O_RDONLY);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue