This commit is contained in:
unknown 2015-04-20 17:05:06 -04:00
parent 12b71f4c0c
commit ec458785ea
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ static int is_valid_hex_digit(char symbol)
symbol &= ~0x20; /* in ASCII, forces lowercase to uppercase */
if (symbol < 'A')
return 0;
if (symbol <= 'Z')
if (symbol <= 'F')
return 1;
return 0;
}