Oops, "f" is a hex digit, too. Hex numbers with "f" in them work again

in the kernel debugger.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23627 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2008-01-19 10:35:55 +00:00
parent d296c4e1f9
commit 42a5ea091a

View File

@ -251,7 +251,7 @@ public:
fCurrentChar++; fCurrentChar++;
while (*fCurrentChar != 0 while (*fCurrentChar != 0
&& (isdigit(*fCurrentChar) && (isdigit(*fCurrentChar)
|| strchr("abcdeABCDE", *fCurrentChar))) { || strchr("abcdefABCDEF", *fCurrentChar))) {
fCurrentChar++; fCurrentChar++;
} }