eet: Fix copy&paste issue

This commit is contained in:
Igor Murzov 2013-07-11 00:52:36 +04:00
parent 3fb6ef5a83
commit 079c1c6d9b
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ hex2long(char *s, char **n)
} /* if */
assert((*s >= '0' && *s <= '9') || (*s >= 'a' && *s <= 'f')
|| (*s >= 'a' && *s <= 'f'));
|| (*s >= 'A' && *s <= 'F'));
for (;;)
{
if (*s >= '0' && *s <= '9')