strtomp: fix mpbits() call in octal code
This commit is contained in:
parent
75990fc719
commit
261ec9fe0e
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ from8(char *a, mpint *b)
|
|||
if(tab.t10[*(uchar*)p] >= 8)
|
||||
break;
|
||||
|
||||
mpbits(b, (a-p)*3);
|
||||
mpbits(b, (p-a)*3);
|
||||
b->top = 0;
|
||||
next = p;
|
||||
|
||||
|
|
Loading…
Reference in a new issue