fuse_opt: testing

This commit is contained in:
Bill Zissimopoulos
2016-05-29 23:31:53 -07:00
parent 74a943d8d7
commit ead273ae18
2 changed files with 15 additions and 1 deletions

View File

@ -68,7 +68,7 @@ static long long strtoint(const char *p, const char *endp, int base, int is_sign
{
c |= 0x20;
if ('a' <= c && c <= maxalp)
v = base * v + (c - 'a');
v = base * v + (c - 'a') + 10;
else
break;
}