Add missing file from previous commit.
This commit is contained in:
		
							parent
							
								
									b5ce0e1d0b
								
							
						
					
					
						commit
						f7ab2d3821
					
				| 
						 | 
				
			
			@ -380,11 +380,20 @@ again:
 | 
			
		|||
			if (c == '0')
 | 
			
		||||
				if ((configBuf[configPos] == 'x') ||
 | 
			
		||||
					(configBuf[configPos] == 'X'))
 | 
			
		||||
                                {
 | 
			
		||||
					base = 16;
 | 
			
		||||
                                        val.numType = PARSE_HEX;
 | 
			
		||||
                                }
 | 
			
		||||
				else
 | 
			
		||||
                                {
 | 
			
		||||
					base = 8;
 | 
			
		||||
                                        val.numType = PARSE_OCTAL;
 | 
			
		||||
                                }
 | 
			
		||||
			else
 | 
			
		||||
                        {
 | 
			
		||||
				base = 10;
 | 
			
		||||
                                val.numType = PARSE_DECIMAL;
 | 
			
		||||
                        }
 | 
			
		||||
 | 
			
		||||
			configRBuf[0] = c;
 | 
			
		||||
			i = 1;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue