type fix for x86-64

This commit is contained in:
Glenn Maynard
2004-10-22 21:33:02 +00:00
parent ee4b509ac5
commit 68289e66e7
+2 -2
View File
@@ -30,9 +30,9 @@ static const char *itoa(unsigned n)
return p;
}
static int xtoi( const char *hex )
static intptr_t xtoi( const char *hex )
{
int ret = 0;
intptr_t ret = 0;
while( 1 )
{
int val = -1;