Correct upper boundary for isxdigit.

Signed-off-by: Ulf Jordan <jordan@chalmers.se>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3238 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Ulf Jordan 2008-04-12 20:09:46 +00:00 committed by Uwe Hermann
parent be504d1d8d
commit 50eff2147d
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ int isupper(int c)
int isxdigit(int c)
{
return isdigit(c) || (tolower(c) >= 'a' && tolower(c) <= 'z');
return isdigit(c) || (tolower(c) >= 'a' && tolower(c) <= 'f');
}
int tolower(int c)