isxdigit -> qemu_isxdigit
Hi! Attached patch uses qemu_isxdigit() instead of isxdigit(). Fixes build warning on NetBSD. Signed-off-by: Christoph Egger <Christoph.Egger@amd.com> -- ---to satisfy European Law for business letters: Advanced Micro Devices GmbH Karl-Hammerschmidt-Str. 34, 85609 Dornach b. Muenchen Geschaeftsfuehrer: Thomas M. McCoy, Giuliano Meroni Sitz: Dornach, Gemeinde Aschheim, Landkreis Muenchen Registergericht Muenchen, HRB Nr. 43632
This commit is contained in:
		
							parent
							
								
									fff2a02f0c
								
							
						
					
					
						commit
						88e150a569
					
				@ -117,9 +117,9 @@ static int parse_mac(DeviceState *dev, Property *prop, const char *str)
 | 
				
			|||||||
    char *p;
 | 
					    char *p;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    for (i = 0, pos = 0; i < 6; i++, pos += 3) {
 | 
					    for (i = 0, pos = 0; i < 6; i++, pos += 3) {
 | 
				
			||||||
        if (!isxdigit(str[pos]))
 | 
					        if (!qemu_isxdigit(str[pos]))
 | 
				
			||||||
            return -1;
 | 
					            return -1;
 | 
				
			||||||
        if (!isxdigit(str[pos+1]))
 | 
					        if (!qemu_isxdigit(str[pos+1]))
 | 
				
			||||||
            return -1;
 | 
					            return -1;
 | 
				
			||||||
        if (i == 5 && str[pos+2] != '\0')
 | 
					        if (i == 5 && str[pos+2] != '\0')
 | 
				
			||||||
            return -1;
 | 
					            return -1;
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user